From 84e1b7d26b8b196bf4d248d082e9674d878e9b8c Mon Sep 17 00:00:00 2001 From: Joerg Wunsch Date: Sat, 30 Nov 1996 20:59:32 +0000 Subject: [PATCH] Truncate the file when opening it with write intent. Otherwise, there's a good chance that garbage will remain at the end. Closes PR # bin/2112: tftpd doesn't truncate ... Reviewed by: fenner --- libexec/tftpd/tftpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c index d46676ecad33..b668f2ed3e0b 100644 --- a/libexec/tftpd/tftpd.c +++ b/libexec/tftpd/tftpd.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id$ + * $Id: tftpd.c,v 1.4 1996/09/22 21:56:07 wosch Exp $ */ #ifndef lint @@ -435,7 +435,7 @@ validate_access(filep, mode) return (err); *filep = filename = pathname; } - fd = open(filename, mode == RRQ ? 0 : 1); + fd = open(filename, mode == RRQ ? O_RDONLY : O_WRONLY|O_TRUNC); if (fd < 0) return (errno + 100); file = fdopen(fd, (mode == RRQ)? "r":"w");