summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--qarsh/qacp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/qarsh/qacp.c b/qarsh/qacp.c
index b404482..495d613 100644
--- a/qarsh/qacp.c
+++ b/qarsh/qacp.c
@@ -271,10 +271,10 @@ sendfiles(char **argv, int argc, short recursive, short quiet)
}
if (!quiet) {
- printf("%-20.20s -> %s:%s\n", file[argv], rhost, destpath);
+ printf("%-40.40s -> %s:%s\n", argv[file], rhost, destpath);
}
- qacp_sendonefile(rhost, file[argv], destpath);
+ qacp_sendonefile(rhost, argv[file], destpath);
free(destpath);
}