Home
last modified time | relevance | path

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

/external/openssh/
Dauth-options.c59 char *authorized_principals = NULL; variable
82 if (authorized_principals) { in auth_clear_options()
83 xfree(authorized_principals); in auth_clear_options()
84 authorized_principals = NULL; in auth_clear_options()
182 if (authorized_principals != NULL) in auth_parse_options()
183 xfree(authorized_principals); in auth_parse_options()
184 authorized_principals = xmalloc(strlen(opts) + 1); in auth_parse_options()
191 authorized_principals[i++] = '"'; in auth_parse_options()
194 authorized_principals[i++] = *opts++; in auth_parse_options()
201 xfree(authorized_principals); in auth_parse_options()
[all …]
Dauth-options.h34 extern char *authorized_principals;
Dauth2-pubkey.c331 if (authorized_principals != NULL && in user_key_allowed2()
332 !match_principals_option(authorized_principals, in user_key_allowed2()
343 authorized_principals == NULL ? pw->pw_name : NULL, in user_key_allowed2()