svn commit: r302445 - stable/9/lib/libc/net

Garrett Cooper ngie at FreeBSD.org
Fri Jul 8 19:16:46 UTC 2016


Author: ngie
Date: Fri Jul  8 19:16:45 2016
New Revision: 302445
URL: https://svnweb.freebsd.org/changeset/base/302445

Log:
  MFstable/10 r302444:
  
  MFC r301708:
  
  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
  
  Pointyhat to: ngie

Modified:
  stable/9/lib/libc/net/getnetbyht.c
Directory Properties:
  stable/9/   (props changed)
  stable/9/lib/   (props changed)
  stable/9/lib/libc/   (props changed)

Modified: stable/9/lib/libc/net/getnetbyht.c
==============================================================================
--- stable/9/lib/libc/net/getnetbyht.c	Fri Jul  8 19:13:18 2016	(r302444)
+++ stable/9/lib/libc/net/getnetbyht.c	Fri Jul  8 19:16:45 2016	(r302445)
@@ -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;
 	}


More information about the svn-src-stable mailing list