From 633445be1a9be37ae727c044417f5607706cf4ae Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 26 Jun 2018 00:25:28 +0000 Subject: Initial commit --- src/libnsss/nsss_all_getspent.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/libnsss/nsss_all_getspent.c (limited to 'src/libnsss/nsss_all_getspent.c') diff --git a/src/libnsss/nsss_all_getspent.c b/src/libnsss/nsss_all_getspent.c new file mode 100644 index 0000000..7ca5048 --- /dev/null +++ b/src/libnsss/nsss_all_getspent.c @@ -0,0 +1,26 @@ +/* ISC license. */ + +#include +#include +#include +#include +#include +#include "nsss-internal.h" +#include "nsss-switch-internal.h" +#include "nsss-all-internal.h" + +struct spwd *nsss_all_getspent (void) +{ + int e = errno ; + if (nsss_all_errno) goto fallback ; + if (!nsss_switch_start(&nsss_switch_here, NSSS_SWITCH_SHADOW, NSSS_NSSSD_PATH, 0, 0)) goto efallback ; + nsss_shadow_sa_here.len = 0 ; + if (!nsss_switch_shadow_get(&nsss_switch_here, &nsss_shadow_here, &nsss_shadow_sa_here, 0, 0)) return 0 ; + return &nsss_shadow_here ; + + efallback: + nsss_all_errno = errno ; + errno = e ; + fallback: + return nsss_unix_getspent() ; +} -- cgit v1.2.3