From d917ef0b8468f77634df59a1a6650aff5adb6b6a Mon Sep 17 00:00:00 2001 From: Daniel Sabogal Date: Sat, 24 Sep 2016 00:38:06 -0400 Subject: remove dead case in gethostbyname2_r this case statement was accidently left behind when this function was refactored in commit e8f39ca4898237cf71657500f0b11534c47a0521. --- src/network/gethostbyname2_r.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/network') diff --git a/src/network/gethostbyname2_r.c b/src/network/gethostbyname2_r.c index 5c1cae98..fc894877 100644 --- a/src/network/gethostbyname2_r.c +++ b/src/network/gethostbyname2_r.c @@ -34,8 +34,6 @@ int gethostbyname2_r(const char *name, int af, case EAI_SYSTEM: *err = NO_RECOVERY; return errno; - case 0: - break; } h->h_addrtype = af; -- cgit v1.2.1