From c84ac6a4d2b1dd5447d938e9031cc184fd773d53 Mon Sep 17 00:00:00 2001 From: djm Date: Sun, 26 Mar 2006 03:00:31 +0000 Subject: [PATCH] - deraadt@cvs.openbsd.org 2006/03/19 18:59:09 [authfile.c] whoever thought that break after return was a good idea needs to get their head examimed --- ChangeLog | 4 ++++ authfile.c | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7f21eadc..55736a18 100644 --- a/ChangeLog +++ b/ChangeLog @@ -52,6 +52,10 @@ - deraadt@cvs.openbsd.org 2006/03/19 18:59:30 [ssh.c] spacing + - deraadt@cvs.openbsd.org 2006/03/19 18:59:09 + [authfile.c] + whoever thought that break after return was a good idea needs to + get their head examimed 20060325 - OpenBSD CVS Sync diff --git a/authfile.c b/authfile.c index d529c834..55c66d1e 100644 --- a/authfile.c +++ b/authfile.c @@ -213,12 +213,10 @@ key_save_private(Key *key, const char *filename, const char *passphrase, case KEY_RSA1: return key_save_private_rsa1(key, filename, passphrase, comment); - break; case KEY_DSA: case KEY_RSA: return key_save_private_pem(key, filename, passphrase, comment); - break; default: break; } @@ -556,13 +554,11 @@ key_load_private_type(int type, const char *filename, const char *passphrase, return key_load_private_rsa1(fd, filename, passphrase, commentp); /* closes fd */ - break; case KEY_DSA: case KEY_RSA: case KEY_UNSPEC: return key_load_private_pem(fd, type, passphrase, commentp); /* closes fd */ - break; default: close(fd); break; -- 2.45.1