diff options
Diffstat (limited to 'src/libnsss/nsss_all_endgrent.c')
-rw-r--r-- | src/libnsss/nsss_all_endgrent.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/libnsss/nsss_all_endgrent.c b/src/libnsss/nsss_all_endgrent.c new file mode 100644 index 0000000..059eca4 --- /dev/null +++ b/src/libnsss/nsss_all_endgrent.c @@ -0,0 +1,17 @@ +/* ISC license. */ + +#include <nsss/grp-unix.h> +#include <nsss/grp-switch.h> +#include <nsss/grp-all.h> +#include "nsss-all-internal.h" + +void nsss_all_endgrent (void) +{ + if (nsss_all_errno) goto fallback ; + nsss_switch_endgrent() ; + return ; + + fallback: + nsss_unix_endgrent() ; + nsss_all_errno = 0 ; +} |