Exemplo n.º 1
0
static void
pw_start(
    Backend *be
)
{
    endpwent();

#ifdef HAVE_SETPWFILE
    if ( be->be_private != NULL ) {
        (void) setpwfile( (char *) be->be_private );
    }
#endif /* HAVE_SETPWFILE */
}
Exemplo n.º 2
0
LISP lsetpwfile(LISP fname)
{int iflag = no_interrupt(1);
 setpwfile(get_c_string(fname));
 no_interrupt(iflag);
 return(NIL);}