blob: fce844c3c1bdc6d8cc208959be4ebe9bbadf450c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <nsss/config.h>
#include <nsss/shadow-switch.h>
#include <nsss/nsss-switch.h>
#include "nsss-switch-internal.h"
void nsss_switch_setspent (void)
{
if (!nsss_switch_start(&nsss_switch_enumerator, NSSS_SWITCH_SHADOW, NSSS_NSSSD_PATH, 0, 0)) return ;
nsss_switch_shadow_rewind(&nsss_switch_enumerator, 0, 0) ;
}
|