Lines Matching defs:nis
53 * nis function pointer table, used by passwdutil_init to initialize
106 nis_to_pwd(char *nis, struct passwd *pwd)
108 pwd->pw_name = strsep(&nis, ":");
109 pwd->pw_passwd = strsep(&nis, ":");
110 pwd->pw_uid = atoi(strsep(&nis, ":"));
111 pwd->pw_gid = atoi(strsep(&nis, ":"));
112 pwd->pw_gecos = strsep(&nis, ":");
113 pwd->pw_dir = strsep(&nis, ":");
114 pwd->pw_shell = nis;
232 if ((w->data.val_s = strdup("nis")) == NULL)