diff options
author | 2002-11-21 23:03:51 +0000 | |
---|---|---|
committer | 2002-11-21 23:03:51 +0000 | |
commit | ea1e1890442669171be892658f4c04788c6bb438 (patch) | |
tree | 3f94a62f2e2409104fa68798fad692523e91079d /usr.bin/ssh/ssh-rsa.c | |
parent | debug->debug2, unify debug messages (diff) | |
download | wireguard-openbsd-ea1e1890442669171be892658f4c04788c6bb438.tar.xz wireguard-openbsd-ea1e1890442669171be892658f4c04788c6bb438.zip |
KNF
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r-- | usr.bin/ssh/ssh-rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c index d7b2918f938..c599ce65c8c 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.26 2002/08/27 17:13:56 stevesk Exp $"); +RCSID("$OpenBSD: ssh-rsa.c,v 1.27 2002/11/21 23:03:51 deraadt Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -37,7 +37,7 @@ RCSID("$OpenBSD: ssh-rsa.c,v 1.26 2002/08/27 17:13:56 stevesk Exp $"); #include "compat.h" #include "ssh.h" -static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int , RSA *); +static int openssh_RSA_verify(int, u_char *, u_int, u_char *, u_int, RSA *); /* RSASSA-PKCS1-v1_5 (PKCS #1 v2.0 signature) with SHA1 */ int |