1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-03-22 14:39:24 -05:00

Minor fix in usage message

[originally from svn r3888]
This commit is contained in:
Jacob Nevins 2004-02-22 14:48:48 +00:00
parent 866cd6126c
commit 75588d1f1d
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
\versionid $Id: pscp.but,v 1.24 2004/02/13 11:20:42 jacob Exp $ \versionid $Id: pscp.but,v 1.25 2004/02/22 14:48:48 jacob Exp $
\#FIXME: Need examples \#FIXME: Need examples
@ -44,7 +44,7 @@ use PSCP:
\c Release 0.54 \c Release 0.54
\c Usage: pscp [options] [user@]host:source target \c Usage: pscp [options] [user@]host:source target
\c pscp [options] source [source...] [user@]host:target \c pscp [options] source [source...] [user@]host:target
\c pscp [options] -ls user@host:filespec \c pscp [options] -ls [user@]host:filespec
\c Options: \c Options:
\c -p preserve file attributes \c -p preserve file attributes
\c -q quiet, don't show statistics \c -q quiet, don't show statistics

2
scp.c
View File

@ -2049,7 +2049,7 @@ static void usage(void)
printf("Usage: pscp [options] [user@]host:source target\n"); printf("Usage: pscp [options] [user@]host:source target\n");
printf printf
(" pscp [options] source [source...] [user@]host:target\n"); (" pscp [options] source [source...] [user@]host:target\n");
printf(" pscp [options] -ls user@host:filespec\n"); printf(" pscp [options] -ls [user@]host:filespec\n");
printf("Options:\n"); printf("Options:\n");
printf(" -p preserve file attributes\n"); printf(" -p preserve file attributes\n");
printf(" -q quiet, don't show statistics\n"); printf(" -q quiet, don't show statistics\n");