diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-10-05 15:40:59 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2010-10-05 15:40:59 +0000 |
commit | c618a8562e68d7315c7107a6ad84f2faf7cc7b9c (patch) | |
tree | 921c28561025b683feaf1dfb4333196b3b5e2639 /lib/libc/net/getprotoname.c | |
parent | 3f506a78ced7af0e7a3a085d6cd37ce62bf5f68c (diff) |
Notes
Diffstat (limited to 'lib/libc/net/getprotoname.c')
-rw-r--r-- | lib/libc/net/getprotoname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/net/getprotoname.c b/lib/libc/net/getprotoname.c index 08822c18d4d8..22c57594f6db 100644 --- a/lib/libc/net/getprotoname.c +++ b/lib/libc/net/getprotoname.c @@ -131,7 +131,7 @@ getprotobyname_r(const char *name, struct protoent *pptr, char *buffer, if (rv != NS_SUCCESS) { errno = ret_errno; - return ((ret_errno != 0) ? ret_errno : -1); + return (ret_errno); } return (0); } |