diff options
author | Ulrich Drepper <drepper@redhat.com> | 1996-11-15 04:08:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1996-11-15 04:08:00 +0000 |
commit | 54d79e995d5a6d0a393ed913b6e26dccc63de5b7 (patch) | |
tree | b758eeac8325f123f161c8d62c5956dc2a6d2556 /nss/nss_files | |
parent | b296c233447a37f77ccd9989fce24b45a8db1afa (diff) | |
download | glibc-54d79e995d5a6d0a393ed913b6e26dccc63de5b7.tar.gz glibc-54d79e995d5a6d0a393ed913b6e26dccc63de5b7.tar.xz glibc-54d79e995d5a6d0a393ed913b6e26dccc63de5b7.zip |
update from main archive 961114 cvs/libc-961115
Diffstat (limited to 'nss/nss_files')
-rw-r--r-- | nss/nss_files/files-XXX.c | 2 | ||||
-rw-r--r-- | nss/nss_files/files-alias.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/nss/nss_files/files-XXX.c b/nss/nss_files/files-XXX.c index c741ab6f48..014e2729a4 100644 --- a/nss/nss_files/files-XXX.c +++ b/nss/nss_files/files-XXX.c @@ -201,7 +201,7 @@ CONCAT(_nss_files_get,ENTNAME_r) (struct STRUCTURE *result, if (stream == NULL) status = internal_setent (0); - if (status != NSS_STATUS_SUCCESS) + if (status == NSS_STATUS_SUCCESS) { /* If the last use was not by the getent function we need the position the stream. */ diff --git a/nss/nss_files/files-alias.c b/nss/nss_files/files-alias.c index c6ef49c621..2b0f292d66 100644 --- a/nss/nss_files/files-alias.c +++ b/nss/nss_files/files-alias.c @@ -20,6 +20,7 @@ #include <aliases.h> #include <ctype.h> +#include <errno.h> #include <libc-lock.h> #include <stdlib.h> #include <stdio.h> |