=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/getlog.c,v retrieving revision 1.92 retrieving revision 1.93 diff -c -r1.92 -r1.93 *** src/usr.bin/cvs/getlog.c 2009/03/23 15:13:58 1.92 --- src/usr.bin/cvs/getlog.c 2009/03/26 17:30:04 1.93 *************** *** 1,4 **** ! /* $OpenBSD: getlog.c,v 1.92 2009/03/23 15:13:58 joris Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria * Copyright (c) 2006 Joris Vink --- 1,4 ---- ! /* $OpenBSD: getlog.c,v 1.93 2009/03/26 17:30:04 joris Exp $ */ /* * Copyright (c) 2005, 2006 Xavier Santolaria * Copyright (c) 2006 Joris Vink *************** *** 210,227 **** cvs_file_classify(cf, cvs_directory_tag); if (cf->file_rcs == NULL) { return; } else if (cf->file_status == FILE_ADDED) { if (verbosity > 0) cvs_log(LP_ERR, "%s has been added, but not committed", cf->file_path); - return; - } - - if (cf->file_type == CVS_DIR) { - if (verbosity > 1) - cvs_log(LP_NOTICE, "Logging %s", cf->file_path); return; } --- 210,227 ---- cvs_file_classify(cf, cvs_directory_tag); + if (cf->file_type == CVS_DIR) { + if (verbosity > 1) + cvs_log(LP_ERR, "Logging %s", cf->file_path); + return; + } + if (cf->file_rcs == NULL) { return; } else if (cf->file_status == FILE_ADDED) { if (verbosity > 0) cvs_log(LP_ERR, "%s has been added, but not committed", cf->file_path); return; }