diff options
author | 2005-05-20 19:40:27 +0000 | |
---|---|---|
committer | 2005-05-20 19:40:27 +0000 | |
commit | 0311af8b58aa6b63a62cd0eaf52471a84573f6ee (patch) | |
tree | fb1a97dbe2bed319f1d49ab4380d0e1fa699bce5 | |
parent | do not hardcode 'CVS/Root' but rather use defined CVS_PATH_ROOTSPEC; (diff) | |
download | wireguard-openbsd-0311af8b58aa6b63a62cd0eaf52471a84573f6ee.tar.xz wireguard-openbsd-0311af8b58aa6b63a62cd0eaf52471a84573f6ee.zip |
simplify error message
-rw-r--r-- | usr.bin/cvs/root.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/root.c b/usr.bin/cvs/root.c index 78ffd0950c6..9c2d46e13ec 100644 --- a/usr.bin/cvs/root.c +++ b/usr.bin/cvs/root.c @@ -1,4 +1,4 @@ -/* $OpenBSD: root.c,v 1.17 2005/05/20 19:37:39 xsa Exp $ */ +/* $OpenBSD: root.c,v 1.18 2005/05/20 19:40:27 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -291,7 +291,7 @@ cvsroot_get(const char *dir) } if (fgets(line, sizeof(line), fp) == NULL) { - cvs_log(LP_ERR, "failed to read CVSROOT line from %s", + cvs_log(LP_ERR, "failed to read line from %s", CVS_PATH_ROOTSPEC); (void)fclose(fp); return (NULL); |