Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2004-02-26 10:47:20 +0300
committerGlenn L McGrath <bug1@ihug.co.nz>2004-02-26 10:47:20 +0300
commitd5d5e54290d87922679808f1b49309ec9b9f33b1 (patch)
tree2a325afd5d099f706e6c9bd15c9842c3211512ee /networking
parentd1daf8b6f4d96cceffb1463967dc3ab359341dff (diff)
Quick fix for tftp truncation bug
Diffstat (limited to 'networking')
-rw-r--r--networking/tftp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/tftp.c b/networking/tftp.c
index f00b64bf2..92966a253 100644
--- a/networking/tftp.c
+++ b/networking/tftp.c
@@ -528,7 +528,7 @@ int tftp_main(int argc, char **argv)
#ifdef CONFIG_FEATURE_TFTP_GET
case 'g':
cmd = tftp_cmd_get;
- flags = O_WRONLY | O_CREAT;
+ flags = O_WRONLY | O_CREAT | O_TRUNC;
break;
#endif
#ifdef CONFIG_FEATURE_TFTP_PUT