diff options
author | 2006-03-20 17:17:23 +0000 | |
---|---|---|
committer | 2006-03-20 17:17:23 +0000 | |
commit | bdad9ee7bedd5d08a5a28dde789c6fe5176cc2bf (patch) | |
tree | 03f9340cf5f35b6300e35b1a7369993e29272bcc /usr.bin/ssh/ssh-rsa.c | |
parent | add missing xfree()'s after we are done with cvs_strsplit(); (diff) | |
download | wireguard-openbsd-bdad9ee7bedd5d08a5a28dde789c6fe5176cc2bf.tar.xz wireguard-openbsd-bdad9ee7bedd5d08a5a28dde789c6fe5176cc2bf.zip |
in a switch (), break after return or goto is stupid
Diffstat (limited to 'usr.bin/ssh/ssh-rsa.c')
-rw-r--r-- | usr.bin/ssh/ssh-rsa.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c index 48607c4fbee..1520d7e1dd8 100644 --- a/usr.bin/ssh/ssh-rsa.c +++ b/usr.bin/ssh/ssh-rsa.c @@ -219,7 +219,6 @@ openssh_RSA_verify(int type, u_char *hash, u_int hashlen, break; default: goto done; - break; } if (hashlen != hlen) { error("bad hashlen"); |