Searched refs:path_left (Results 1 – 1 of 1) sorted by relevance
469 const char *path_left; in _krb5_expand_path_tokensv() local520 for (path_left = path_in; path_left && *path_left; ) { in _krb5_expand_path_tokensv()522 tok_begin = strstr(path_left, "%{"); in _krb5_expand_path_tokensv()524 if (tok_begin && tok_begin != path_left) { in _krb5_expand_path_tokensv()526 append = malloc((tok_begin - path_left) + 1); in _krb5_expand_path_tokensv()528 memcpy(append, path_left, tok_begin - path_left); in _krb5_expand_path_tokensv()529 append[tok_begin - path_left] = '\0'; in _krb5_expand_path_tokensv()531 path_left = tok_begin; in _krb5_expand_path_tokensv()555 path_left = tok_end + 1; in _krb5_expand_path_tokensv()558 append = strdup(path_left); in _krb5_expand_path_tokensv()[all …]