diff options
author | robin <robin@cvs.openbsd.org> | 1996-12-23 13:10:11 +0000 |
---|---|---|
committer | robin <robin@cvs.openbsd.org> | 1996-12-23 13:10:11 +0000 |
commit | f2ee67ee45da10e5fcb81828f16a9daaad0cb6b3 (patch) | |
tree | b41ce9a792c665e8f0770e565fc8bea26e794eb2 /libexec | |
parent | 5fc79652fb47e321627cf0029c407f2eb5059f5b (diff) |
Remove redundant/incorrect switch case label: `def_case'
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/utility.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libexec/telnetd/utility.c b/libexec/telnetd/utility.c index e6746badd9f..aabe1adf824 100644 --- a/libexec/telnetd/utility.c +++ b/libexec/telnetd/utility.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utility.c,v 1.5 1996/12/06 15:33:31 deraadt Exp $ */ +/* $OpenBSD: utility.c,v 1.6 1996/12/23 13:10:10 robin Exp $ */ /* $NetBSD: utility.c,v 1.9 1996/02/28 20:38:29 thorpej Exp $ */ /* @@ -39,7 +39,7 @@ static char sccsid[] = "@(#)utility.c 8.4 (Berkeley) 5/30/95"; static char rcsid[] = "$NetBSD: utility.c,v 1.9 1996/02/28 20:38:29 thorpej Exp $"; #else -static char rcsid[] = "$OpenBSD: utility.c,v 1.5 1996/12/06 15:33:31 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: utility.c,v 1.6 1996/12/23 13:10:10 robin Exp $"; #endif #endif /* not lint */ @@ -934,7 +934,6 @@ printsub(direction, pointer, length) break; default: - def_case: if (isprint(pointer[i]) && pointer[i] != '"') { if (noquote) { *nfrontp++ = '"'; |