revert unrelated change that slipped into last commit
diff --git a/src/passwd/nscd_query.c b/src/passwd/nscd_query.c
index 1897edc..d38e371 100644
--- a/src/passwd/nscd_query.c
+++ b/src/passwd/nscd_query.c
@@ -40,7 +40,7 @@
 	buf[0] = NSCDVERSION;
 
 	fd = socket(PF_UNIX, SOCK_STREAM | SOCK_CLOEXEC, 0);
-	if (fd < 0 && errno != EAFNOSUPPORT) return NULL;
+	if (fd < 0) return NULL;
 
 	if(!(f = fdopen(fd, "r"))) {
 		close(fd);