- deraadt@cvs.openbsd.org 2002/06/17 06:05:56
[scp.c] make usage like man page
This commit is contained in:
parent
61c183bea3
commit
45933dd9aa
|
@ -12,7 +12,7 @@
|
||||||
- markus@cvs.openbsd.org 2002/06/15 00:07:38
|
- markus@cvs.openbsd.org 2002/06/15 00:07:38
|
||||||
[authfd.c authfd.h ssh-add.c ssh-agent.c]
|
[authfd.c authfd.h ssh-add.c ssh-agent.c]
|
||||||
fix stupid typo
|
fix stupid typo
|
||||||
- markus@cvs.openbsd.org 2002/06/15 01:27:48
|
- markus@cvs.openbsd.org 2002/06/15 01:27:48
|
||||||
[authfd.c authfd.h ssh-add.c ssh-agent.c]
|
[authfd.c authfd.h ssh-add.c ssh-agent.c]
|
||||||
remove the CONSTRAIN_IDENTITY messages and introduce a new
|
remove the CONSTRAIN_IDENTITY messages and introduce a new
|
||||||
ADD_ID message with contraints instead. contraints can be
|
ADD_ID message with contraints instead. contraints can be
|
||||||
|
@ -20,6 +20,9 @@
|
||||||
- itojun@cvs.openbsd.org 2002/06/16 21:30:58
|
- itojun@cvs.openbsd.org 2002/06/16 21:30:58
|
||||||
[ssh-keyscan.c]
|
[ssh-keyscan.c]
|
||||||
use TAILQ_xx macro. from lukem@netbsd. markus ok
|
use TAILQ_xx macro. from lukem@netbsd. markus ok
|
||||||
|
- deraadt@cvs.openbsd.org 2002/06/17 06:05:56
|
||||||
|
[scp.c]
|
||||||
|
make usage like man page
|
||||||
|
|
||||||
20020613
|
20020613
|
||||||
- (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com
|
- (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com
|
||||||
|
@ -948,4 +951,4 @@
|
||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2222 2002/06/21 00:09:54 mouring Exp $
|
$Id: ChangeLog,v 1.2223 2002/06/21 00:10:58 mouring Exp $
|
||||||
|
|
8
scp.c
8
scp.c
|
@ -75,7 +75,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: scp.c,v 1.89 2002/06/08 12:36:53 markus Exp $");
|
RCSID("$OpenBSD: scp.c,v 1.90 2002/06/17 06:05:56 deraadt Exp $");
|
||||||
|
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "atomicio.h"
|
#include "atomicio.h"
|
||||||
|
@ -955,9 +955,9 @@ void
|
||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
(void) fprintf(stderr,
|
(void) fprintf(stderr,
|
||||||
"usage: scp [-pqrvBC46] [-F config] [-S ssh] [-P port] [-c cipher] [-i identity]\n"
|
"usage: scp [-pqrvBC46] [-F config] [-S program] [-P port]\n"
|
||||||
" [-o option] f1 f2\n"
|
" [-c cipher] [-i identity] [-o option]\n"
|
||||||
" or: scp [options] f1 ... fn directory\n");
|
" [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue