From 49185b19a87ee1c77eddf4260925a3741f866b62 Mon Sep 17 00:00:00 2001 From: dg Date: Fri, 30 Oct 1998 16:17:50 +0000 Subject: Rename a function name so that it doesn't conflict with a future system call. --- usr.bin/tftp/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/tftp/main.c') diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c index d767463..3c6a151 100644 --- a/usr.bin/tftp/main.c +++ b/usr.bin/tftp/main.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93"; #endif static const char rcsid[] = - "$Id: main.c,v 1.5 1997/08/14 06:47:39 charnier Exp $"; + "$Id: main.c,v 1.6 1998/06/09 04:31:02 imp Exp $"; #endif /* not lint */ /* Many bug fixes are from Jim Guyton */ @@ -373,7 +373,7 @@ put(argc, argv) printf("putting %s to %s:%s [%s]\n", cp, hostname, targ, mode); peeraddr.sin_port = port; - sendfile(fd, targ, mode); + xmitfile(fd, targ, mode); return; } /* this assumes the target is a directory */ @@ -391,7 +391,7 @@ put(argc, argv) printf("putting %s to %s:%s [%s]\n", argv[n], hostname, targ, mode); peeraddr.sin_port = port; - sendfile(fd, targ, mode); + xmitfile(fd, targ, mode); } } -- cgit v1.1