=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/update.c,v retrieving revision 1.117 retrieving revision 1.118 diff -c -r1.117 -r1.118 *** src/usr.bin/cvs/update.c 2008/01/31 18:09:40 1.117 --- src/usr.bin/cvs/update.c 2008/02/03 15:20:10 1.118 *************** *** 1,4 **** ! /* $OpenBSD: update.c,v 1.117 2008/01/31 18:09:40 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: update.c,v 1.118 2008/02/03 15:20:10 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * *************** *** 106,112 **** if (current_cvsroot->cr_method == CVS_METHOD_LOCAL) { cr.enterdir = cvs_update_enterdir; ! cr.leavedir = cvs_update_leavedir; cr.fileproc = cvs_update_local; flags |= CR_REPO; } else { --- 106,112 ---- if (current_cvsroot->cr_method == CVS_METHOD_LOCAL) { cr.enterdir = cvs_update_enterdir; ! cr.leavedir = prune_dirs ? cvs_update_leavedir : NULL; cr.fileproc = cvs_update_local; flags |= CR_REPO; } else {