- 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
This commit is contained in:
parent
77788dc824
commit
28072eb10c
|
@ -58,6 +58,11 @@
|
||||||
- deraadt@cvs.openbsd.org 2001/02/08 14:39:36
|
- deraadt@cvs.openbsd.org 2001/02/08 14:39:36
|
||||||
[readconf.c]
|
[readconf.c]
|
||||||
snprintf
|
snprintf
|
||||||
|
- 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
|
||||||
- (bal) fixed sftp-client.c. Return 'status' instead of '0'
|
- (bal) fixed sftp-client.c. Return 'status' instead of '0'
|
||||||
(from the OpenBSD tree)
|
(from the OpenBSD tree)
|
||||||
- (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
|
- (bal) Synced ssh.1, ssh-add.1 and sshd.8 w/ OpenBSD
|
||||||
|
@ -3845,4 +3850,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.730 2001/02/10 23:06:02 mouring Exp $
|
$Id: ChangeLog,v 1.731 2001/02/10 23:13:41 mouring Exp $
|
||||||
|
|
|
@ -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>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
|
@ -37,7 +37,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#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/evp.h>
|
||||||
#include <openssl/md5.h>
|
#include <openssl/md5.h>
|
||||||
|
@ -705,7 +705,7 @@ cleanup_handler(int sig)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
usage()
|
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] [command {args...]]\n",
|
||||||
|
|
Loading…
Reference in New Issue