Searched refs:from_path (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/sendmail/rmail/ |
H A D | rmail.c | 102 char *from_path, *from_sys, *from_user; local 134 from_path = from_sys = from_user = NULL; 227 if (from_path == NULL) 230 if ((from_path = malloc(fptlen = 256)) == NULL) 236 if ((from_path = realloc(from_path, 240 memmove(from_path + fplen, p, len); 242 from_path[fplen++] = '!'; 243 from_path[fplen] = '\0'; 261 if (from_path != NULL) 264 from_path); [all …]
|
/freebsd/contrib/sendmail/contrib/ |
H A D | rmail.oldsys.patch | 69 from_path ? from_path : "", from_user); 99 ! if (((from_path ? strlen(from_path) : 0) + strlen(from_user) + 3) 103 from_path ? from_path : "", from_user);
|
/freebsd/usr.sbin/config/ |
H A D | main.cc | 585 char *from_path, *to_path; in moveifchanged() local 593 from_path = path(from_name); in moveifchanged() 595 if ((from_fd = open(from_path, O_RDONLY)) < 0) in moveifchanged() 602 err(EX_OSERR, "moveifchanged fstat(%s)", from_path); in moveifchanged() 616 err(EX_OSERR, "mmap %s", from_path); in moveifchanged() 628 if (rename(from_path, to_path) < 0) in moveifchanged() 629 err(EX_OSERR, "rename(%s, %s)", from_path, to_path); in moveifchanged() 631 if (unlink(from_path) < 0) in moveifchanged() 632 err(EX_OSERR, "unlink(%s)", from_path); in moveifchanged() 639 free(from_path); in moveifchanged()
|
/freebsd/crypto/openssh/ |
H A D | sftp-client.h | 173 const char *from_path, const char *to_path, 181 const char *from_path, const char *to_path,
|
H A D | sftp-client.c | 2454 const char *from_path, const char *to_path, in sftp_crossload() argument 2470 debug2_f("crossload src \"%s\" to dst \"%s\"", from_path, to_path); in sftp_crossload() 2475 if (sftp_stat(from, from_path, 0, &attr) != 0) in sftp_crossload() 2482 error("download \"%s\": not a regular file", from_path); in sftp_crossload() 2495 if (send_open(from, from_path, "origin", SSH2_FXF_READ, NULL, in sftp_crossload() 2519 start_progress_meter(progress_meter_path(from_path), in sftp_crossload() 2668 error("read origin \"%s\": %s", from_path, fx2txt(status)); in sftp_crossload() 2701 const char *from_path, const char *to_path, in crossload_dir_internal() argument 2711 debug2_f("crossload dir src \"%s\" to dst \"%s\"", from_path, to_path); in crossload_dir_internal() 2719 if (sftp_stat(from, from_path, 1, &ldirattrib) != 0) { in crossload_dir_internal() [all …]
|