summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--scp.c8
2 files changed, 9 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a053d3526..f71b2d030 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,7 +12,7 @@
12 - markus@cvs.openbsd.org 2002/06/15 00:07:38 12 - markus@cvs.openbsd.org 2002/06/15 00:07:38
13 [authfd.c authfd.h ssh-add.c ssh-agent.c] 13 [authfd.c authfd.h ssh-add.c ssh-agent.c]
14 fix stupid typo 14 fix stupid typo
15 - markus@cvs.openbsd.org 2002/06/15 01:27:48 15 - markus@cvs.openbsd.org 2002/06/15 01:27:48
16 [authfd.c authfd.h ssh-add.c ssh-agent.c] 16 [authfd.c authfd.h ssh-add.c ssh-agent.c]
17 remove the CONSTRAIN_IDENTITY messages and introduce a new 17 remove the CONSTRAIN_IDENTITY messages and introduce a new
18 ADD_ID message with contraints instead. contraints can be 18 ADD_ID message with contraints instead. contraints can be
@@ -20,6 +20,9 @@
20 - itojun@cvs.openbsd.org 2002/06/16 21:30:58 20 - itojun@cvs.openbsd.org 2002/06/16 21:30:58
21 [ssh-keyscan.c] 21 [ssh-keyscan.c]
22 use TAILQ_xx macro. from lukem@netbsd. markus ok 22 use TAILQ_xx macro. from lukem@netbsd. markus ok
23 - deraadt@cvs.openbsd.org 2002/06/17 06:05:56
24 [scp.c]
25 make usage like man page
23 26
2420020613 2720020613
25 - (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com 28 - (bal) typo of setgroup for cygwin. Patch by vinschen@redhat.com
@@ -948,4 +951,4 @@
948 - (stevesk) entropy.c: typo in debug message 951 - (stevesk) entropy.c: typo in debug message
949 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 952 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
950 953
951$Id: ChangeLog,v 1.2222 2002/06/21 00:09:54 mouring Exp $ 954$Id: ChangeLog,v 1.2223 2002/06/21 00:10:58 mouring Exp $
diff --git a/scp.c b/scp.c
index 860dc108b..2019376e9 100644
--- a/scp.c
+++ b/scp.c
@@ -75,7 +75,7 @@
75 */ 75 */
76 76
77#include "includes.h" 77#include "includes.h"
78RCSID("$OpenBSD: scp.c,v 1.89 2002/06/08 12:36:53 markus Exp $"); 78RCSID("$OpenBSD: scp.c,v 1.90 2002/06/17 06:05:56 deraadt Exp $");
79 79
80#include "xmalloc.h" 80#include "xmalloc.h"
81#include "atomicio.h" 81#include "atomicio.h"
@@ -955,9 +955,9 @@ void
955usage(void) 955usage(void)
956{ 956{
957 (void) fprintf(stderr, 957 (void) fprintf(stderr,
958 "usage: scp [-pqrvBC46] [-F config] [-S ssh] [-P port] [-c cipher] [-i identity]\n" 958 "usage: scp [-pqrvBC46] [-F config] [-S program] [-P port]\n"
959 " [-o option] f1 f2\n" 959 " [-c cipher] [-i identity] [-o option]\n"
960 " or: scp [options] f1 ... fn directory\n"); 960 " [[user@]host1:]file1 [...] [[user@]host2:]file2\n");
961 exit(1); 961 exit(1);
962} 962}
963 963