[ssh-agent.c]
     update usage
This commit is contained in:
Ben Lindstrom 2001-07-04 03:51:35 +00:00
parent 036a6b28c9
commit db6b276f5a
2 changed files with 7 additions and 4 deletions

View File

@ -25,6 +25,9 @@
- markus@cvs.openbsd.org 2001/06/26 04:59:59 - markus@cvs.openbsd.org 2001/06/26 04:59:59
[authfd.c authfd.h ssh-add.c] [authfd.c authfd.h ssh-add.c]
initial support for smartcards in the agent initial support for smartcards in the agent
- markus@cvs.openbsd.org 2001/06/26 05:07:43
[ssh-agent.c]
update usage
20010629 20010629
- (bal) Removed net_aton() since we don't use it any more - (bal) Removed net_aton() since we don't use it any more
@ -5852,4 +5855,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1351 2001/07/04 03:50:02 mouring Exp $ $Id: ChangeLog,v 1.1352 2001/07/04 03:51:35 mouring Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-agent.c,v 1.57 2001/06/26 04:07:06 markus Exp $ */ /* $OpenBSD: ssh-agent.c,v 1.58 2001/06/26 05:07:43 markus Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -36,7 +36,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: ssh-agent.c,v 1.57 2001/06/26 04:07:06 markus Exp $"); RCSID("$OpenBSD: ssh-agent.c,v 1.58 2001/06/26 05:07:43 markus Exp $");
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/md5.h> #include <openssl/md5.h>
@ -698,7 +698,7 @@ static void
usage(void) usage(void)
{ {
fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION); fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION);
fprintf(stderr, "Usage: %s [-c | -s] [-k] [command {args...]]\n", fprintf(stderr, "Usage: %s [-c | -s] [-k] [-d] [command {args...]]\n",
__progname); __progname);
exit(1); exit(1);
} }