]> andersk Git - openssh.git/commitdiff
- deraadt@cvs.openbsd.org 2004/09/15 00:46:01
authordtucker <dtucker>
Fri, 5 Nov 2004 09:05:32 +0000 (09:05 +0000)
committerdtucker <dtucker>
Fri, 5 Nov 2004 09:05:32 +0000 (09:05 +0000)
     [ssh.c]
     /* fallthrough */ is something a programmer understands.  But
     /* FALLTHROUGH */ is also understood by lint, so that is better.

ChangeLog
ssh.c

index 4a227980b044f48b28ae6be2bb2b64c3b2f42851..9ed05b435dc7cb0900e1a5c2e1c61820a23e9a9e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
      [clientloop.c ssh.c]
      cleanup multiplex control socket on SIGHUP too, spotted by sturm@
      ok markus@ deraadt@
+   - deraadt@cvs.openbsd.org 2004/09/15 00:46:01
+     [ssh.c]
+     /* fallthrough */ is something a programmer understands.  But
+     /* FALLTHROUGH */ is also understood by lint, so that is better.
 
 20041102
  - (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX
diff --git a/ssh.c b/ssh.c
index 77f16c0c5c2bcebfbb4c3df3d7d0db8c863bb9c3..7859b0f7850d716b4ecf5121347a6a9192e5296a 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.226 2004/09/07 23:41:30 djm Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.227 2004/09/15 00:46:01 deraadt Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -316,7 +316,7 @@ again:
                                        options.log_level++;
                                break;
                        }
-                       /* fallthrough */
+                       /* FALLTHROUGH */
                case 'V':
                        fprintf(stderr, "%s, %s\n",
                            SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));
This page took 0.045958 seconds and 5 git commands to generate.