Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/
H A Dexpand_path.c469 const char *path_left; in _krb5_expand_path_tokensv() local
520 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 …]