[git commit] ftpd: fix MDTM's month value. Closes 5336

Denys Vlasenko vda.linux at googlemail.com
Tue Jul 10 22:16:08 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=3bb858765e0524efdf2a05c8669ddbfde522d634
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 networking/ftpd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/networking/ftpd.c b/networking/ftpd.c
index 1c97df5..4ba96cf 100644
--- a/networking/ftpd.c
+++ b/networking/ftpd.c
@@ -821,7 +821,7 @@ handle_size_or_mdtm(int need_size)
 		gmtime_r(&statbuf.st_mtime, &broken_out);
 		sprintf(buf, STR(FTP_STATFILE_OK)" %04u%02u%02u%02u%02u%02u\r\n",
 			broken_out.tm_year + 1900,
-			broken_out.tm_mon,
+			broken_out.tm_mon + 1,
 			broken_out.tm_mday,
 			broken_out.tm_hour,
 			broken_out.tm_min,


More information about the busybox-cvs mailing list