Patch from Jeff Studer <jstuder@aquilagroup.com> to supply a defaults for

localfilename from remotefilename, and for remotefilename from localfilename
when the other one is not supplied.
This commit is contained in:
Eric Andersen 2002-03-20 14:25:27 +00:00
parent 5a40651046
commit 900c24dc4e

View File

@ -548,6 +548,13 @@ int tftp_main(int argc, char **argv)
if ((cmd == 0) || (optind == argc)) {
show_usage();
}
if(cmd == tftp_cmd_get)
if(localfile == NULL)
localfile = remotefile;
if(cmd == tftp_cmd_put)
if(remotefile == NULL)
remotefile = localfile;
fd = open(localfile, flags, 0644);
if (fd < 0) {