HomeSort by: relevance | last modified time | path
    Searched refs:fout_errno (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.bin/ftp/
util.c 1509 * and if fout_errno != NULL, sets fout_errno to errno on other conditions.
1512 ftp_putc(int c, FILE * fout, int * fout_errno)
1525 if (fout_errno != NULL)
1526 *fout_errno = errno;
ftp.c 946 int fout_errno = 0; local
1136 if ((ch = ftp_getc(fout, &fout_errno)) == EOF)
1159 if (ftp_putc('\r', fout, &fout_errno) == EOF
1171 if (ftp_putc(c, fout, &fout_errno) == EOF)
1189 errno = fout_errno;

Completed in 25 milliseconds