svn commit: r273702 - head/tools/regression/lib/libc/nss

Stefan Farfeleder stefanf at FreeBSD.org
Sun Oct 26 17:56:58 UTC 2014


Author: stefanf
Date: Sun Oct 26 17:56:58 2014
New Revision: 273702
URL: https://svnweb.freebsd.org/changeset/base/273702

Log:
  Remove incorrect semicolon.

Modified:
  head/tools/regression/lib/libc/nss/test-gethostby.c

Modified: head/tools/regression/lib/libc/nss/test-gethostby.c
==============================================================================
--- head/tools/regression/lib/libc/nss/test-gethostby.c	Sun Oct 26 17:56:47 2014	(r273701)
+++ head/tools/regression/lib/libc/nss/test-gethostby.c	Sun Oct 26 17:56:58 2014	(r273702)
@@ -109,7 +109,7 @@ __gethostbyname2(const char *name, int a
 	else {
 		error = 0;
 		he = getipnodebyname(name, af, ipnode_flags, &error);
-		if (he == NULL);
+		if (he == NULL)
 			errno = error;
 	}
 	


More information about the svn-src-all mailing list