- 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.
This commit is contained in:
parent
07336dae94
commit
e9bf98412e
|
@ -12,6 +12,10 @@
|
|||
[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
|
||||
|
@ -1791,4 +1795,4 @@
|
|||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||
- (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
4
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));
|
||||
|
|
Loading…
Reference in New Issue