diff options
author | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 22:16:26 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2004-09-28 22:16:26 +0000 |
commit | 6c81dc423b333d871a16083c74e42be68516e8e2 (patch) | |
tree | 33dd14ae21299390e9d6927a61f1ab33de83a49f /sunrpc | |
parent | 21ae57c4135109f3e5478c713463fe4951605fd8 (diff) | |
download | glibc-6c81dc423b333d871a16083c74e42be68516e8e2.zip glibc-6c81dc423b333d871a16083c74e42be68516e8e2.tar.gz glibc-6c81dc423b333d871a16083c74e42be68516e8e2.tar.bz2 |
Update.
* sunrpc/pmap_rmt.c (getbroadcastnets): Likewise.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/pmap_rmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/pmap_rmt.c b/sunrpc/pmap_rmt.c index e446f5e..4ff707a 100644 --- a/sunrpc/pmap_rmt.c +++ b/sunrpc/pmap_rmt.c @@ -179,7 +179,7 @@ getbroadcastnets (struct in_addr *addrs, int naddrs) { struct ifaddrs *ifa; - if (getifaddrs (&ifa) == 0) + if (getifaddrs (&ifa) != 0) { perror ("broadcast: getifaddrs"); return 0; |