Home
last modified time | relevance | path

Searched refs:authtypes (Results 1 – 1 of 1) sorted by relevance

/freebsd/lib/libutil/
H A Dlogin_cap.c923 const char **authtypes = NULL; in login_getstyle() local
931 authtypes = login_getcaplist(lc, realauth, NULL); in login_getstyle()
934 if (authtypes == NULL) in login_getstyle()
935 authtypes = login_getcaplist(lc, "auth", NULL); in login_getstyle()
937 if (authtypes == NULL) in login_getstyle()
938 authtypes = defauthtypes; in login_getstyle()
947 while (authtypes[i] != NULL && strcmp(style, authtypes[i]) != 0) in login_getstyle()
952 if (authtypes[i] != NULL && (auths = strdup(authtypes[i])) != NULL) in login_getstyle()