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.
diff --git a/networking/tftp.c b/networking/tftp.c
index 1e5dddb..c037764 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -548,6 +548,13 @@
 	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) {