summaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch')
-rw-r--r--meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch b/meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch
deleted file mode 100644
index aa29d9ce1..000000000
--- a/meta-networking/recipes-daemons/tftp-hpa/files/tftp-hpa-bug-fix-on-empty-file-put-error.patch
+++ /dev/null
@@ -1,33 +0,0 @@
1tftp-hpa: bug fix on empty file put error
2
3With the feature that checking the disk filled up, the return value of
4function write_behind was checked and used to detect the disk status.
5While for empty file, without data being written, this function will
6return -1 thus the disk filled up error was miss-raised. Fix it.
7
8Upstream-Status: pending
9
10Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
11---
12 tftpd/tftpd.c | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14--- a/tftpd/tftpd.c
15+++ b/tftpd/tftpd.c
16@@ -1692,7 +1692,7 @@ static void tftp_recvfile(const struct f
17 syslog(LOG_WARNING, "tftpd: write(ack): %m");
18 goto abort;
19 }
20- if(write_behind(file, pf->f_convert) < 0) {
21+ if(write_behind(file, pf->f_convert) < -1) {
22 nak(ENOSPACE, NULL);
23 (void)fclose(file);
24 goto abort;
25@@ -1727,7 +1727,7 @@ static void tftp_recvfile(const struct f
26 goto abort;
27 }
28 } while (size == segsize);
29- if(write_behind(file, pf->f_convert) < 0) {
30+ if(write_behind(file, pf->f_convert) < -1) {
31 nak(ENOSPACE, NULL);
32 (void)fclose(file);
33 goto abort;