=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/update.c,v retrieving revision 1.12 retrieving revision 1.13 diff -c -r1.12 -r1.13 *** src/usr.bin/cvs/update.c 2004/12/14 22:30:48 1.12 --- src/usr.bin/cvs/update.c 2004/12/21 18:32:10 1.13 *************** *** 1,4 **** ! /* $OpenBSD: update.c,v 1.12 2004/12/14 22:30:48 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: update.c,v 1.13 2004/12/21 18:32:10 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 146,157 **** root = CVS_DIR_ROOT(cf); repo = CVS_DIR_REPO(cf); ! if ((root->cr_method != CVS_METHOD_LOCAL) && (cf->cf_type == DT_DIR)) { ! if (cf->cf_cvstat == CVS_FST_UNKNOWN) ! ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE, ! CVS_FILE_NAME(cf)); ! else ! ret = cvs_senddir(root, cf); return (ret); } --- 146,160 ---- root = CVS_DIR_ROOT(cf); repo = CVS_DIR_REPO(cf); ! if (cf->cf_type == DT_DIR) { ! if (root->cr_method != CVS_METHOD_LOCAL) { ! if (cf->cf_cvstat == CVS_FST_UNKNOWN) ! ret = cvs_sendreq(root, CVS_REQ_QUESTIONABLE, ! CVS_FILE_NAME(cf)); ! else ! ret = cvs_senddir(root, cf); ! } ! return (ret); }