diff options
author | mouring <mouring> | 2001-02-10 23:13:41 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-02-10 23:13:41 +0000 |
commit | f3bb4690ad7a1e91e934edf71a3019e422833c9c (patch) | |
tree | fbe58271a339972e02340b7f6d4795bb98ee5aa0 /ssh-agent.c | |
parent | c35be6b44eac0440d392e9b84eb4cf46ae4df876 (diff) | |
download | openssh-f3bb4690ad7a1e91e934edf71a3019e422833c9c.tar.gz |
- itojun@cvs.openbsd.org 2001/02/08 19:30:52
sync with netbsd tree changes.
- more strict prototypes, include necessary headers
- use paths.h/pathnames.h decls
- size_t typecase to int -> u_long
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index c23d73b7..7285096a 100644 --- a/ssh-agent.c +++ b/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.49 2001/01/29 19:47:31 markus Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.50 2001/02/08 19:30:52 itojun Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -37,7 +37,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-agent.c,v 1.49 2001/01/29 19:47:31 markus Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.50 2001/02/08 19:30:52 itojun Exp $"); #include <openssl/evp.h> #include <openssl/md5.h> @@ -705,7 +705,7 @@ cleanup_handler(int sig) } void -usage() +usage(void) { fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION); fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n", |