diff options
Diffstat (limited to 'pwd')
-rw-r--r-- | pwd/getpwnam_r.c | 5 | ||||
-rw-r--r-- | pwd/getpwuid_r.c | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/pwd/getpwnam_r.c b/pwd/getpwnam_r.c index 0dc1eacaed..429d3c47b0 100644 --- a/pwd/getpwnam_r.c +++ b/pwd/getpwnam_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -26,5 +26,6 @@ #define ADD_PARAMS const char *name #define ADD_VARIABLES name #define BUFLEN NSS_BUFLEN_PASSWD +#define USE_NSCD 1 -#include "../nss/getXXbyYY_r.c" +#include <nss/getXXbyYY_r.c> diff --git a/pwd/getpwuid_r.c b/pwd/getpwuid_r.c index 4db8bc0317..18b925b794 100644 --- a/pwd/getpwuid_r.c +++ b/pwd/getpwuid_r.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996. @@ -26,5 +26,6 @@ #define ADD_PARAMS uid_t uid #define ADD_VARIABLES uid #define BUFLEN NSS_BUFLEN_PASSWD +#define USE_NSCD 1 -#include "../nss/getXXbyYY_r.c" +#include <nss/getXXbyYY_r.c> |