From 59d4718a1a7be1fde1121766b331ab22bc16a4e4 Mon Sep 17 00:00:00 2001 From: dtucker Date: Fri, 5 Nov 2004 09:05:32 +0000 Subject: [PATCH] - 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. --- ChangeLog | 4 ++++ ssh.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4a227980..9ed05b43 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/ssh.c b/ssh.c index 77f16c0c..7859b0f7 100644 --- 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 #include @@ -316,7 +316,7 @@ again: options.log_level++; break; } - /* fallthrough */ + /* FALLTHROUGH */ case 'V': fprintf(stderr, "%s, %s\n", SSH_RELEASE, SSLeay_version(SSLEAY_VERSION)); -- 2.45.2