summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ssh-rsa.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 63c0952cc..2e0b02ef8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -61,6 +61,9 @@
61 - markus@cvs.openbsd.org 2001/11/10 13:19:45 61 - markus@cvs.openbsd.org 2001/11/10 13:19:45
62 [sshd.c] 62 [sshd.c]
63 cleanup libwrap support (remove bogus comment, bogus close(), add debug, etc). 63 cleanup libwrap support (remove bogus comment, bogus close(), add debug, etc).
64 - markus@cvs.openbsd.org 2001/11/10 13:22:42
65 [ssh-rsa.c]
66 KNF (unexpand)
64 67
6520011109 6820011109
66 - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK) 69 - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
@@ -6873,4 +6876,4 @@
6873 - Wrote replacements for strlcpy and mkdtemp 6876 - Wrote replacements for strlcpy and mkdtemp
6874 - Released 1.0pre1 6877 - Released 1.0pre1
6875 6878
6876$Id: ChangeLog,v 1.1653 2001/11/12 00:07:11 djm Exp $ 6879$Id: ChangeLog,v 1.1654 2001/11/12 00:07:35 djm Exp $
diff --git a/ssh-rsa.c b/ssh-rsa.c
index 6fd47287c..a6a703b95 100644
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: ssh-rsa.c,v 1.12 2001/11/07 22:10:28 markus Exp $"); 26RCSID("$OpenBSD: ssh-rsa.c,v 1.13 2001/11/10 13:22:42 markus Exp $");
27 27
28#include <openssl/evp.h> 28#include <openssl/evp.h>
29#include <openssl/err.h> 29#include <openssl/err.h>
@@ -54,7 +54,7 @@ ssh_rsa_sign(
54 error("ssh_rsa_sign: no RSA key"); 54 error("ssh_rsa_sign: no RSA key");
55 return -1; 55 return -1;
56 } 56 }
57 if (datafellows & SSH_BUG_SIGBLOB) { 57 if (datafellows & SSH_BUG_SIGBLOB) {
58 error("ssh_rsa_sign: SSH_BUG_SIGBLOB not supported"); 58 error("ssh_rsa_sign: SSH_BUG_SIGBLOB not supported");
59 return -1; 59 return -1;
60 } 60 }
@@ -128,7 +128,7 @@ ssh_rsa_verify(
128 error("ssh_rsa_verify: no RSA key"); 128 error("ssh_rsa_verify: no RSA key");
129 return -1; 129 return -1;
130 } 130 }
131 if (datafellows & SSH_BUG_SIGBLOB) { 131 if (datafellows & SSH_BUG_SIGBLOB) {
132 error("ssh_rsa_verify: SSH_BUG_SIGBLOB not supported"); 132 error("ssh_rsa_verify: SSH_BUG_SIGBLOB not supported");
133 return -1; 133 return -1;
134 } 134 }