revert unrelated change that slipped into last commit

This commit is contained in:
Rich Felker 2016-07-13 15:23:01 -04:00
parent cff5747c74
commit 39494a273e

View File

@ -40,7 +40,7 @@ retry:
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);