HomeSort by: relevance | last modified time | path
    Searched defs:list_match (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libpam/modules/pam_login_access/
login_access.c 51 static int list_match(char *, const char *,
121 match = (list_match(froms, from, from_match)
122 && list_match(users, user, user_match));
131 /* list_match - match an item against a list of tokens with exceptions */
134 list_match(char *list, const char *item, function in typeref:typename:int
158 if (tok == 0 || list_match((char *) 0, item, match_fn) == NO)
  /src/lib/libwrap/
hosts_access.c 89 static int list_match(char *, struct request_info *,
201 match = list_match(sv_list, request, server_match)
202 && list_match(cl_list, request, client_match);
225 /* list_match - match a request against a list of patterns with exceptions */
228 list_match(char *list, struct request_info *request, function in typeref:typename:int
254 return (tok == 0 || list_match(NULL, request, match_fn) == 0);

Completed in 12 milliseconds