diff options
-rw-r--r-- | usr.bin/cvs/admin.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.bin/cvs/admin.c b/usr.bin/cvs/admin.c index 063df4cb0db..f7529323999 100644 --- a/usr.bin/cvs/admin.c +++ b/usr.bin/cvs/admin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: admin.c,v 1.18 2005/07/07 14:27:57 joris Exp $ */ +/* $OpenBSD: admin.c,v 1.19 2005/07/11 08:32:36 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2005 Joris Vink <joris@openbsd.org> @@ -361,6 +361,12 @@ cvs_admin_local(CVSFILE *cf, void *arg) RCSFILE *rf; struct cvsroot *root; + if (cf->cf_type == DT_DIR) { + if (verbosity > 1) + cvs_log(LP_INFO, "Administrating %s", cf->cf_name); + return (0); + } + if (cf->cf_cvstat == CVS_FST_UNKNOWN) { cvs_log(LP_WARN, "I know nothing about %s", fpath); return (0); |