summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--ssh-agent.c6
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ee8f40fc..9e64a40f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -58,6 +58,11 @@
58 - deraadt@cvs.openbsd.org 2001/02/08 14:39:36 58 - deraadt@cvs.openbsd.org 2001/02/08 14:39:36
59 [readconf.c] 59 [readconf.c]
60 snprintf 60 snprintf
61 - itojun@cvs.openbsd.org 2001/02/08 19:30:52
62 sync with netbsd tree changes.
63 - more strict prototypes, include necessary headers
64 - use paths.h/pathnames.h decls
65 - size_t typecase to int -> u_long
61 - (bal) fixed sftp-client.c. Return 'status' instead of '0' 66 - (bal) fixed sftp-client.c. Return 'status' instead of '0'
62 (from the OpenBSD tree) 67 (from the OpenBSD tree)
63 - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD 68 - (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
@@ -3845,4 +3850,4 @@
3845 - Wrote replacements for strlcpy and mkdtemp 3850 - Wrote replacements for strlcpy and mkdtemp
3846 - Released 1.0pre1 3851 - Released 1.0pre1
3847 3852
3848$Id: ChangeLog,v 1.730 2001/02/10 23:06:02 mouring Exp $ 3853$Id: ChangeLog,v 1.731 2001/02/10 23:13:41 mouring Exp $
diff --git a/ssh-agent.c b/ssh-agent.c
index c23d73b7e..7285096a4 100644
--- a/ssh-agent.c
+++ b/ssh-agent.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-agent.c,v 1.49 2001/01/29 19:47:31 markus Exp $ */ 1/* $OpenBSD: ssh-agent.c,v 1.50 2001/02/08 19:30:52 itojun Exp $ */
2 2
3/* 3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi> 4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -37,7 +37,7 @@
37 */ 37 */
38 38
39#include "includes.h" 39#include "includes.h"
40RCSID("$OpenBSD: ssh-agent.c,v 1.49 2001/01/29 19:47:31 markus Exp $"); 40RCSID("$OpenBSD: ssh-agent.c,v 1.50 2001/02/08 19:30:52 itojun Exp $");
41 41
42#include <openssl/evp.h> 42#include <openssl/evp.h>
43#include <openssl/md5.h> 43#include <openssl/md5.h>
@@ -705,7 +705,7 @@ cleanup_handler(int sig)
705} 705}
706 706
707void 707void
708usage() 708usage(void)
709{ 709{
710 fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION); 710 fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION);
711 fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n", 711 fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n",