diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:46:02 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 00:46:02 +0000 |
commit | 4ac5b718ae937f836bc2a0b72b04de66d5f5f85a (patch) | |
tree | a2b2b999d8a651e4b42c26c622d6f9ce4bc52b2a /usr.bin/ssh | |
parent | 593b6a09b2613732c0008f09902f5e903497f73d (diff) |
/* fallthrough */ is something a programmer understands. But
/* FALLTHROUGH */ is also understood by lint, so that is better.
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 4b070e7baf0..1066c84eb66 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/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> @@ -311,7 +311,7 @@ again: options.log_level++; break; } - /* fallthrough */ + /* FALLTHROUGH */ case 'V': fprintf(stderr, "%s, %s\n", SSH_VERSION, SSLeay_version(SSLEAY_VERSION)); |