diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-13 09:53:41 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-13 09:53:41 -0400 |
commit | 28af39fe427ffec8b836f4f30450ffc30b03e5c4 (patch) | |
tree | 1301763734dc124d55a4997f7755170aca41580a /src/network/getservbyport_r.c | |
parent | fb80e047cc7d0b900445ca6ce38f10199dafd98b (diff) | |
download | musl-28af39fe427ffec8b836f4f30450ffc30b03e5c4.tar.gz |
remove some stray trailing space characters
Diffstat (limited to 'src/network/getservbyport_r.c')
-rw-r--r-- | src/network/getservbyport_r.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/getservbyport_r.c b/src/network/getservbyport_r.c index 004a6168..f119abc8 100644 --- a/src/network/getservbyport_r.c +++ b/src/network/getservbyport_r.c @@ -35,7 +35,7 @@ int getservbyport_r(int port, const char *prots, se->s_aliases[1] = 0; se->s_aliases[0] = se->s_name = buf; - if (getnameinfo((void *)&sin, sizeof sin, 0, 0, buf, buflen, + if (getnameinfo((void *)&sin, sizeof sin, 0, 0, buf, buflen, strcmp(prots, "udp") ? 0 : NI_DGRAM) < 0) return -1; *res = se; |