diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-11 08:32:37 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-07-11 08:32:37 +0000 |
commit | 318a3873cc1f56f265b156e68d3a9c7eb7f2da38 (patch) | |
tree | 500a8b5128ea321f402e774e86e8cfa67fa9b78e | |
parent | 98ce8ad0ad6e757aadf205818c20c7ae8c83ed6e (diff) |
add info message;
-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); |