From 3beb2f6b5d3307bdc044aa91a35748c44ec7c26a Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Wed, 5 Oct 2005 06:09:20 +0000
Subject: [PATCH] CURL_TIMECOND_IFMODSINCE actually requires that the remote
 document has been modded since the given time, so we should compare <= and
 not just <.

---
 lib/ftp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/ftp.c b/lib/ftp.c
index 64b903fca4..c9fa72edaa 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -1798,7 +1798,7 @@ static CURLcode ftp_state_mdtm_resp(struct connectdata *conn,
       switch(data->set.timecondition) {
       case CURL_TIMECOND_IFMODSINCE:
       default:
-        if(data->info.filetime < data->set.timevalue) {
+        if(data->info.filetime <= data->set.timevalue) {
           infof(data, "The requested document is not new enough\n");
           ftp->no_transfer = TRUE; /* mark this to not transfer data */
           state(conn, FTP_STOP);
-- 
GitLab