diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-12-25 20:30:42 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2016-12-25 20:30:42 +0000 |
commit | 77e27bced3de71323a97c3e37554d024afe23b49 (patch) | |
tree | 54b1293ffc1bc84833ac45eff81914929b24beff /sbin | |
parent | bbe9e43d39cd5389f53d231f05aa7b0c5af9b16e (diff) |
gcc says "if you define labels and don't use them, I will whine."
ok tom@
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ifconfig/ifconfig.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c index bd98db2bfc5..f74392cff80 100644 --- a/sbin/ifconfig/ifconfig.c +++ b/sbin/ifconfig/ifconfig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ifconfig.c,v 1.335 2016/12/20 13:26:24 stsp Exp $ */ +/* $OpenBSD: ifconfig.c,v 1.336 2016/12/25 20:30:41 krw Exp $ */ /* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */ /* @@ -5315,7 +5315,6 @@ utf16_to_char(uint16_t *in, int inlen, char *out, size_t outlen) c = inlen > 0 ? letoh16(*in) : 0; if (c == 0 || --outlen == 0) { /* always NUL terminate result */ -done: *out = '\0'; break; } |