Author: ngie
Date: Wed Jun  8 23:30:13 2016
New Revision: 301708
URL: https://svnweb.freebsd.org/changeset/base/301708

Log:
  Revert r301707
  
  getnetent_p doesn't return NULL like getnetent does. coccinelle got confused 
and
  I didn't verify that it worked before committing the change
  
  MFC after: 1 week
  X-MFC with: r301707
  Pointyhat to: ngie

Modified:
  head/lib/libc/net/getnetbyht.c

Modified: head/lib/libc/net/getnetbyht.c
==============================================================================
--- head/lib/libc/net/getnetbyht.c      Wed Jun  8 23:23:19 2016        
(r301707)
+++ head/lib/libc/net/getnetbyht.c      Wed Jun  8 23:30:13 2016        
(r301708)
@@ -215,10 +215,10 @@ _ht_getnetbyname(void *rval, void *cb_da
        }
 
        _setnethtent(ned->stayopen, ned);
-       while ((error = getnetent_p(&ne, ned)) == NULL) {
+       while ((error = getnetent_p(&ne, ned)) == 0) {
                if (strcasecmp(ne.n_name, name) == 0)
                        break;
-               for (cp = ne.n_aliases; *cp != NULL; cp++)
+               for (cp = ne.n_aliases; *cp != 0; cp++)
                        if (strcasecmp(*cp, name) == 0)
                                goto found;
        }
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to