diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2004-12-13 16:10:31 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2004-12-13 16:10:31 +0000 |
commit | f95d0137e8983c32c9a010f6b55e2754c1815d3a (patch) | |
tree | 39f6dce383cda00f9aa4ae9b2494478582684306 /usr.bin | |
parent | 883271716b332e2e9a2fc5efcce4cdf15bca7ef5 (diff) |
print full path of .cvsrc in log messages; jfb@ ok.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/cvs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 11ac9fd137e..fad19b7b74e 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.20 2004/12/13 13:55:10 jmc Exp $ */ +/* $OpenBSD: cvs.c,v 1.21 2004/12/13 16:10:30 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -601,8 +601,8 @@ cvs_read_rcfile(void) cmdp = cvs_findcmd(linebuf); if (cmdp == NULL) { cvs_log(LP_NOTICE, - "unknown command `%s' in cvsrc", - linebuf); + "unknown command `%s' in `%s'", + linebuf, rcpath); continue; } |