]> andersk Git - openssh.git/commitdiff
- deraadt@cvs.openbsd.org 2006/03/19 18:59:09
authordjm <djm>
Sun, 26 Mar 2006 03:00:31 +0000 (03:00 +0000)
committerdjm <djm>
Sun, 26 Mar 2006 03:00:31 +0000 (03:00 +0000)
     [authfile.c]
     whoever thought that break after return was a good idea needs to
     get their head examimed

ChangeLog
authfile.c

index 7f21eadc6cee0cae1da7455d9e692ccca78bc1ae..55736a182eede7cc08a546ecce5a463ab8a88c13 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
    - 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
index d529c83408fafd8c9f12e4952461186551b2ecb1..55c66d1e36ac5f1660ba6916b07fa7011fed8b04 100644 (file)
@@ -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;
This page took 5.132164 seconds and 5 git commands to generate.