=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/remove.c,v retrieving revision 1.18 retrieving revision 1.19 diff -c -r1.18 -r1.19 *** src/usr.bin/cvs/remove.c 2005/07/08 16:03:38 1.18 --- src/usr.bin/cvs/remove.c 2005/07/11 07:51:01 1.19 *************** *** 1,4 **** ! /* $OpenBSD: remove.c,v 1.18 2005/07/08 16:03:38 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * Copyright (c) 2004 Xavier Santolaria --- 1,4 ---- ! /* $OpenBSD: remove.c,v 1.19 2005/07/11 07:51:01 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * Copyright (c) 2004 Xavier Santolaria *************** *** 146,151 **** --- 146,157 ---- static int cvs_remove_local(CVSFILE *cf, void *arg) { + if (cf->cf_type == DT_DIR) { + if (verbosity > 1) + cvs_log(LP_INFO, "Removing %s", cf->cf_name); + return (0); + } + cvs_log(LP_INFO, "scheduling file `%s' for removal", cf->cf_name); cvs_log(LP_INFO, "use `%s commit' to remove this file permanently", __progname);