diff options
author | 2001-11-10 13:22:42 +0000 | |
---|---|---|
committer | 2001-11-10 13:22:42 +0000 | |
commit | 38f4279eac93a30bb294d07c103403d17a9b9936 (patch) | |
tree | 74b29688d2064affb1077efeb038d72ebf2d896f /usr.bin/ssh/ssh-rsa.c | |
parent | cleanup libwrap support (remove bogus comment, bogus close(), add debug, etc). (diff) | |
download | wireguard-openbsd-38f4279eac93a30bb294d07c103403d17a9b9936.tar.xz wireguard-openbsd-38f4279eac93a30bb294d07c103403d17a9b9936.zip |
KNF (unexpand)
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r-- | usr.bin/ssh/ssh-rsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c index 6fd47287c9e..a6a703b9511 100644 --- a/usr.bin/ssh/ssh-rsa.c +++ b/usr.bin/ssh/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; } |