]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2001/11/10 13:22:42
authordjm <djm>
Mon, 12 Nov 2001 00:07:35 +0000 (00:07 +0000)
committerdjm <djm>
Mon, 12 Nov 2001 00:07:35 +0000 (00:07 +0000)
     [ssh-rsa.c]
     KNF (unexpand)

ChangeLog
ssh-rsa.c

index 6a809d24ecd12f1f0138674737ccf4a2179c08f1..42180bbcef9434cfbc7c901a2e6cb46e9a9f90cd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -61,6 +61,9 @@
    - markus@cvs.openbsd.org 2001/11/10 13:19:45
      [sshd.c]
      cleanup libwrap support (remove bogus comment, bogus close(), add debug, etc).
+   - markus@cvs.openbsd.org 2001/11/10 13:22:42
+     [ssh-rsa.c]
+     KNF (unexpand)
 
 20011109
  - (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
index 6fd47287c9eecdd30bab54a8604c69b48b8e8c28..a6a703b9511c6e040d376a943aded68e5698b478 100644 (file)
--- a/ssh-rsa.c
+++ b/ssh-rsa.c
@@ -23,7 +23,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh-rsa.c,v 1.12 2001/11/07 22:10:28 markus Exp $");
+RCSID("$OpenBSD: ssh-rsa.c,v 1.13 2001/11/10 13:22:42 markus Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -54,7 +54,7 @@ ssh_rsa_sign(
                error("ssh_rsa_sign: no RSA key");
                return -1;
        }
-        if (datafellows & SSH_BUG_SIGBLOB) {
+       if (datafellows & SSH_BUG_SIGBLOB) {
                error("ssh_rsa_sign: SSH_BUG_SIGBLOB not supported");
                return -1;
        }
@@ -128,7 +128,7 @@ ssh_rsa_verify(
                error("ssh_rsa_verify: no RSA key");
                return -1;
        }
-        if (datafellows & SSH_BUG_SIGBLOB) {
+       if (datafellows & SSH_BUG_SIGBLOB) {
                error("ssh_rsa_verify: SSH_BUG_SIGBLOB not supported");
                return -1;
        }
This page took 0.088211 seconds and 5 git commands to generate.