# ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif /* HAVE_UNISTD_H */
+#include <pwd.h>
#ifdef HAVE_ERR_H
# include <err.h>
#else
/* XXX - should check against INT_MAX */
def->sd_un.ival = (unsigned int)l;
}
+ if (def->callback)
+ return(def->callback(val));
return(TRUE);
}
/* XXX - should check against INT_MAX */
def->sd_un.ival = (unsigned int)l;
}
+ if (def->callback)
+ return(def->callback(val));
return(TRUE);
}
if (v == NULL)
return(FALSE);
}
+ if (def->callback)
+ return(def->callback(val));
return(TRUE);
}
def->sd_un.str = NULL;
else
def->sd_un.str = estrdup(val);
+ if (def->callback)
+ return(def->callback(val));
return(TRUE);
}
return(FALSE);
def->sd_un.mode = (mode_t)l;
}
+ if (def->callback)
+ return(def->callback(val));
return(TRUE);
}