=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/file.c,v retrieving revision 1.79 retrieving revision 1.80 diff -c -r1.79 -r1.80 *** src/usr.bin/cvs/file.c 2005/05/24 21:57:33 1.79 --- src/usr.bin/cvs/file.c 2005/05/25 09:42:12 1.80 *************** *** 1,4 **** ! /* $OpenBSD: file.c,v 1.79 2005/05/24 21:57:33 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: file.c,v 1.80 2005/05/25 09:42:12 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 1013,1019 **** cfp->cf_cvstat = CVS_FST_ADDED; else { /* check last modified time */ ! if (ent->ce_mtime >= (time_t)st.st_mtime) cfp->cf_cvstat = CVS_FST_UPTODATE; else cfp->cf_cvstat = CVS_FST_MODIFIED; --- 1013,1019 ---- cfp->cf_cvstat = CVS_FST_ADDED; else { /* check last modified time */ ! if (ent->ce_mtime == (time_t)st.st_mtime) cfp->cf_cvstat = CVS_FST_UPTODATE; else cfp->cf_cvstat = CVS_FST_MODIFIED;