Commit 1de82b22 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

removed silly check for >=0 of a supposedly unsigned value!

parent bd878756
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -522,7 +522,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
            time_t secs=time(NULL);
            k->timeofdoc = curl_getdate(k->p+strlen("Last-Modified:"),
                                        &secs);
            if(data->set.get_filetime>=0)
            if(data->set.get_filetime)
              data->info.filetime = k->timeofdoc;
          }
          else if ((k->httpcode >= 300 && k->httpcode < 400) &&