summaryrefslogtreecommitdiff
path: root/usr.bin/ftp/domacro.c
diff options
context:
space:
mode:
authorRay Lai <ray@cvs.openbsd.org>2006-05-16 23:43:17 +0000
committerRay Lai <ray@cvs.openbsd.org>2006-05-16 23:43:17 +0000
commitf4dfdccff84af7995e86eea1e1bf46ec71b40e31 (patch)
treed60105d5e19a0928dcb88be3892985c5901c1400 /usr.bin/ftp/domacro.c
parentd4ddb0f8b9056c225122f6e03d9d974fda3eb45d (diff)
Remove shadowing variables and properly use /* FALLTHROUGH */
comments. No binary change. Found by lint. OK beck@, deraadt@
Diffstat (limited to 'usr.bin/ftp/domacro.c')
-rw-r--r--usr.bin/ftp/domacro.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/domacro.c b/usr.bin/ftp/domacro.c
index 669b9f1b3fc..b2dbf192a58 100644
--- a/usr.bin/ftp/domacro.c
+++ b/usr.bin/ftp/domacro.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: domacro.c,v 1.12 2006/04/25 05:45:20 tedu Exp $ */
+/* $OpenBSD: domacro.c,v 1.13 2006/05/16 23:43:16 ray Exp $ */
/* $NetBSD: domacro.c,v 1.10 1997/07/20 09:45:45 lukem Exp $ */
/*
@@ -31,7 +31,7 @@
*/
#if !defined(lint) && !defined(SMALL)
-static const char rcsid[] = "$OpenBSD: domacro.c,v 1.12 2006/04/25 05:45:20 tedu Exp $";
+static const char rcsid[] = "$OpenBSD: domacro.c,v 1.13 2006/05/16 23:43:16 ray Exp $";
#endif /* not lint and not SMALL */
#include <ctype.h>
@@ -100,7 +100,7 @@ TOP:
}
break;
}
- /* intentional drop through */
+ /* FALLTHROUGH */
default:
*cp2++ = *cp1;
break;