/src/bin/sh/ |
error.c | 311 STATIC const struct errname errormsg[] = { variable in typeref:typename:const struct errname[] 383 for (ep = errormsg ; ep->errcode ; ep++) {
|
/src/libexec/rshd/ |
rshd.c | 276 const char *errormsg = NULL, *errorstr = NULL; local in function:doit 486 errormsg = pam_strerror(pamh, pam_err); 522 errormsg = __rcmd_errstr ? __rcmd_errstr : "unknown error"; 713 remuser, hostname, locuser, errormsg, cmdbuf);
|
/src/usr.bin/ftp/ |
util.c | 377 const char *errormsg; local in function:ftp_login 410 errormsg = NULL; 411 nlen = get_line(stdin, tmp, sizeof(tmp), &errormsg); 413 fprintf(ttyout, "%s; %s aborted.\n", errormsg, "login"); 508 const char *errormsg; local in function:another 519 errormsg = NULL; 520 nlen = get_line(stdin, line + len, sizeof(line)-len, &errormsg); 522 fprintf(ttyout, "%s; %s aborted.\n", errormsg, "operation"); 1302 * If EOF/error occurs or a too-long line is encountered and errormsg 1312 get_line(FILE *stream, char *buf, size_t buflen, const char **errormsg) [all...] |
cmds.c | 162 const char *errormsg; local in function:confirm 178 if (get_line(stdin, cline, sizeof(cline), &errormsg) < 0) { 180 fprintf(ttyout, "%s; %s aborted\n", errormsg, cmd);
|
fetch.c | 264 const char *cp, *ep, *scheme, *errormsg; local in function:auth_url 311 if (get_line(stdin, uuser, sizeof(uuser), &errormsg) < 0) { 312 warnx("%s; can't authenticate", errormsg); 980 const char *errormsg; local in function:getresponseline 983 *len = fetch_getline(fin, buf, buflen, &errormsg); 986 if (*errormsg == '\n') 987 errormsg++; 988 warnx("Receiving HTTP reply: %s", errormsg);
|