Searched refs:path_left (Results 1 – 1 of 1) sorted by relevance
407 const char *path_left; in _krb5_expand_path_tokens() local417 for (path_left = path_in; path_left && *path_left; ) { in _krb5_expand_path_tokens()419 tok_begin = strstr(path_left, "%{"); in _krb5_expand_path_tokens()421 if (tok_begin && tok_begin != path_left) { in _krb5_expand_path_tokens()423 append = malloc((tok_begin - path_left) + 1); in _krb5_expand_path_tokens()425 memcpy(append, path_left, tok_begin - path_left); in _krb5_expand_path_tokens()426 append[tok_begin - path_left] = '\0'; in _krb5_expand_path_tokens()428 path_left = tok_begin; in _krb5_expand_path_tokens()449 path_left = tok_end + 1; in _krb5_expand_path_tokens()452 append = strdup(path_left); in _krb5_expand_path_tokens()[all …]