Searched refs:pwres (Results 1 – 1 of 1) sorted by relevance
/external/libedit/src/ |
D | filecomplete.c | 75 struct passwd pwres; in fn_tilde_expand() local 101 if (getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf), in fn_tilde_expand() 105 pass = getpwuid_r(getuid(), &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand() 111 if (getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf), &pass) != 0) in fn_tilde_expand() 114 pass = getpwnam_r(temp, &pwres, pwbuf, sizeof(pwbuf)); in fn_tilde_expand()
|