diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-12-11 03:39:50 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-12-11 03:39:50 +0100 |
commit | f0f90989fa7c22ab86ae7957b3af539584be375c (patch) | |
tree | d29637328f1c0458d5ffed5d284d8353ee7ed9ba /auth-rsa.c | |
parent | - fgsch@cvs.openbsd.org 2004/12/10 03:10:42 (diff) | |
download | openssh-f0f90989fa7c22ab86ae7957b3af539584be375c.tar.xz openssh-f0f90989fa7c22ab86ae7957b3af539584be375c.zip |
- dtucker@cvs.openbsd.org 2004/12/11 01:48:56
[auth-rsa.c auth2-pubkey.c authfile.c misc.c misc.h]
Fix debug call in error path of authorized_keys processing and fix related
warnings; ok djm@
Diffstat (limited to 'auth-rsa.c')
-rw-r--r-- | auth-rsa.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/auth-rsa.c b/auth-rsa.c index 2060f8394..4378008d3 100644 --- a/auth-rsa.c +++ b/auth-rsa.c @@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth-rsa.c,v 1.61 2004/12/06 11:41:03 dtucker Exp $"); +RCSID("$OpenBSD: auth-rsa.c,v 1.62 2004/12/11 01:48:56 dtucker Exp $"); #include <openssl/rsa.h> #include <openssl/md5.h> @@ -33,6 +33,7 @@ RCSID("$OpenBSD: auth-rsa.c,v 1.61 2004/12/06 11:41:03 dtucker Exp $"); #include "hostfile.h" #include "monitor_wrap.h" #include "ssh.h" +#include "misc.h" /* import */ extern ServerOptions options; |