- djm@cvs.openbsd.org 2003/05/15 03:10:52

[ssh-keygen.c]
     avoid warning; ok jakob@
This commit is contained in:
Damien Miller 2003-05-15 13:37:43 +10:00
parent 3a3261ff99
commit ed12a26f0d
2 changed files with 8 additions and 2 deletions

View File

@ -25,6 +25,9 @@
- markus@cvs.openbsd.org 2003/05/15 03:08:29 - markus@cvs.openbsd.org 2003/05/15 03:08:29
[cipher.c cipher-bf1.c cipher-aes.c cipher-3des1.c] [cipher.c cipher-bf1.c cipher-aes.c cipher-3des1.c]
split out custom EVP ciphers split out custom EVP ciphers
- djm@cvs.openbsd.org 2003/05/15 03:10:52
[ssh-keygen.c]
avoid warning; ok jakob@
- (djm) Always parse UsePAM - (djm) Always parse UsePAM
- (djm) Configure glue for DNS support (code doesn't work in portable yet) - (djm) Configure glue for DNS support (code doesn't work in portable yet)
- (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support) - (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
@ -1505,4 +1508,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284; save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@ ok provos@
$Id: ChangeLog,v 1.2711 2003/05/15 03:37:19 djm Exp $ $Id: ChangeLog,v 1.2712 2003/05/15 03:37:43 djm Exp $

View File

@ -12,7 +12,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob Exp $"); RCSID("$OpenBSD: ssh-keygen.c,v 1.106 2003/05/15 03:10:52 djm Exp $");
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/pem.h> #include <openssl/pem.h>
@ -31,6 +31,9 @@ RCSID("$OpenBSD: ssh-keygen.c,v 1.105 2003/05/14 18:16:20 jakob Exp $");
#ifdef SMARTCARD #ifdef SMARTCARD
#include "scard.h" #include "scard.h"
#endif #endif
#ifdef DNS
#include "dns.h"
#endif
/* Number of bits in the RSA/DSA key. This value can be changed on the command line. */ /* Number of bits in the RSA/DSA key. This value can be changed on the command line. */
int bits = 1024; int bits = 1024;