Home
last modified time | relevance | path

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

/external/dropbear/
Dsvr-authpubkey.c157 FILE * authfile = NULL; in checkpubkey() local
189 authfile = fopen(filename, "r"); in checkpubkey()
190 if (authfile == NULL) { in checkpubkey()
200 if (buf_getline(line, authfile) == DROPBEAR_FAILURE) { in checkpubkey()
244 if (authfile) { in checkpubkey()
245 fclose(authfile); in checkpubkey()
Ddbutil.h56 int buf_getline(buffer * line, FILE * authfile);
Ddbutil.c567 int buf_getline(buffer * line, FILE * authfile) { in buf_getline() argument
578 c = fgetc(authfile); /*getc() is weird with some uClibc systems*/ in buf_getline()