=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/file.c,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- src/usr.bin/cvs/file.c 2004/12/02 06:54:15 1.35 +++ src/usr.bin/cvs/file.c 2004/12/03 20:19:54 1.36 @@ -1,4 +1,4 @@ -/* $OpenBSD: file.c,v 1.35 2004/12/02 06:54:15 jfb Exp $ */ +/* $OpenBSD: file.c,v 1.36 2004/12/03 20:19:54 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. @@ -898,7 +898,7 @@ cfp->cf_cvstat = CVS_FST_ADDED; else { /* check last modified time */ - if (ent->ce_mtime == (time_t)st.st_mtime) + if (ent->ce_mtime >= (time_t)st.st_mtime) cfp->cf_cvstat = CVS_FST_UPTODATE; else cfp->cf_cvstat = CVS_FST_MODIFIED;