aboutsummaryrefslogtreecommitdiff
path: root/libbb/inet_common.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-01-24 22:49:15 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-01-24 22:49:15 +0000
commita5549c961739fb0d354f3c41cb5fb0d64c8da4ec (patch)
tree124661cc0161a21e3e9eb8ca43411b7cf6b1ac02 /libbb/inet_common.c
parent680b86afbb8ba466176ad6866409496225660009 (diff)
downloadbusybox-a5549c961739fb0d354f3c41cb5fb0d64c8da4ec.tar.gz
fdisk: fix a case where break was reached only for DOS labels
Diffstat (limited to 'libbb/inet_common.c')
-rw-r--r--libbb/inet_common.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/libbb/inet_common.c b/libbb/inet_common.c
index 7e799b5e1..9c4f49649 100644
--- a/libbb/inet_common.c
+++ b/libbb/inet_common.c
@@ -97,7 +97,6 @@ char *INET_rresolve(struct sockaddr_in *s_in, int numeric, uint32_t netmask)
uint32_t ad, host_ad;
int host = 0;
- /* Grmpf. -FvK */
if (s_in->sin_family != AF_INET) {
#ifdef DEBUG
bb_error_msg("rresolve: unsupported address family %d!",
@@ -195,7 +194,6 @@ char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric)
char name[128];
int s;
- /* Grmpf. -FvK */
if (sin6->sin6_family != AF_INET6) {
#ifdef DEBUG
bb_error_msg("rresolve: unsupport address family %d!",
@@ -223,4 +221,4 @@ char *INET6_rresolve(struct sockaddr_in6 *sin6, int numeric)
return xstrdup(name);
}
-#endif /* CONFIG_FEATURE_IPV6 */
+#endif /* CONFIG_FEATURE_IPV6 */