On Fri, Aug 03, 2007 at 04:53:51PM -0700, Michael Leib wrote:
> But, it appears it's doing "equal to and newer than a specified time".
Does the attached patch help?
--
Alexander. | software is knowlege
Index: FileSet.cc
===================================================================
RCS file: /home/lav/cvsroot/lftp/src/FileSet.cc,v
retrieving revision 1.56
diff -u -p -r1.56 FileSet.cc
--- FileSet.cc 8 Jun 2007 11:29:52 -0000 1.56
+++ FileSet.cc 6 Aug 2007 04:45:33 -0000
@@ -427,7 +427,7 @@ bool FileInfo::SameAs(const FileInfo *f
bool FileInfo::OlderThan(time_t t)
{
- return((defined&DATE) && date<t);
+ return((defined&DATE) && date<=t);
}
bool FileInfo::NewerThan(time_t t)
{