aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorJoerg Wunsch <joerg@FreeBSD.org>1996-11-30 20:59:32 +0000
committerJoerg Wunsch <joerg@FreeBSD.org>1996-11-30 20:59:32 +0000
commit84e1b7d26b8b196bf4d248d082e9674d878e9b8c (patch)
treefc54f2a14ee3b6bf38ff85a335800c894f9839c8 /libexec
parent0c6ed4736c3632360df26d0513c49e4bfe027f39 (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/tftpd/tftpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c
index d46676ecad33a..b668f2ed3e0b8 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");