[ssh.c]
     /* fallthrough */ is something a programmer understands.  But
     /* FALLTHROUGH */ is also understood by lint, so that is better.
This commit is contained in:
Darren Tucker 2004-11-05 20:05:32 +11:00
parent 07336dae94
commit e9bf98412e
2 changed files with 7 additions and 3 deletions

View File

@ -12,6 +12,10 @@
[clientloop.c ssh.c] [clientloop.c ssh.c]
cleanup multiplex control socket on SIGHUP too, spotted by sturm@ cleanup multiplex control socket on SIGHUP too, spotted by sturm@
ok markus@ deraadt@ 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 20041102
- (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX - (dtucker) [configure.ac includes.h] Bug #947: Fix compile error on HP-UX
@ -1791,4 +1795,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM - (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.3565 2004/11/05 09:02:16 dtucker Exp $ $Id: ChangeLog,v 1.3566 2004/11/05 09:05:32 dtucker Exp $

4
ssh.c
View File

@ -40,7 +40,7 @@
*/ */
#include "includes.h" #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/evp.h>
#include <openssl/err.h> #include <openssl/err.h>
@ -316,7 +316,7 @@ again:
options.log_level++; options.log_level++;
break; break;
} }
/* fallthrough */ /* FALLTHROUGH */
case 'V': case 'V':
fprintf(stderr, "%s, %s\n", fprintf(stderr, "%s, %s\n",
SSH_RELEASE, SSLeay_version(SSLEAY_VERSION)); SSH_RELEASE, SSLeay_version(SSLEAY_VERSION));