[ssh-agent.c]
     typo in usage; ok markus@
This commit is contained in:
Ben Lindstrom 2001-07-18 15:53:39 +00:00
parent a4a5323b2a
commit a7fc2f7434
2 changed files with 7 additions and 4 deletions

View File

@ -9,6 +9,9 @@
- stevesk@cvs.openbsd.org 2001/07/15 16:57:21
[ssh-agent.1]
-d will not fork; ok markus@
- stevesk@cvs.openbsd.org 2001/07/15 16:58:29
[ssh-agent.c]
typo in usage; ok markus@
20010715
- (bal) Set "BROKEN_GETADDRINFO" for darwin platform. Reported by
@ -6048,4 +6051,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
$Id: ChangeLog,v 1.1406 2001/07/18 15:51:00 mouring Exp $
$Id: ChangeLog,v 1.1407 2001/07/18 15:53:39 mouring Exp $

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-agent.c,v 1.64 2001/07/04 23:49:27 markus Exp $ */
/* $OpenBSD: ssh-agent.c,v 1.65 2001/07/15 16:58:29 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -36,7 +36,7 @@
*/
#include "includes.h"
RCSID("$OpenBSD: ssh-agent.c,v 1.64 2001/07/04 23:49:27 markus Exp $");
RCSID("$OpenBSD: ssh-agent.c,v 1.65 2001/07/15 16:58:29 stevesk Exp $");
#include <openssl/evp.h>
#include <openssl/md5.h>
@ -816,7 +816,7 @@ static void
usage(void)
{
fprintf(stderr, "ssh-agent version %s\n", SSH_VERSION);
fprintf(stderr, "Usage: %s [-c | -s] [-k] [-d] [command {args...]]\n",
fprintf(stderr, "Usage: %s [-c | -s] [-k] [-d] [command [args...]]\n",
__progname);
exit(1);
}