diff options
author | 2006-06-13 06:53:45 +0000 | |
---|---|---|
committer | 2006-06-13 06:53:45 +0000 | |
commit | 96276484562fbb48b718e92e7651b47c8747bb70 (patch) | |
tree | 5b9a52e9aa64371a102119b5761adc4f0b92a9b9 | |
parent | better usage (diff) | |
download | wireguard-openbsd-96276484562fbb48b718e92e7651b47c8747bb70.tar.xz wireguard-openbsd-96276484562fbb48b718e92e7651b47c8747bb70.zip |
be more accurate in describing what happened
when we cannot see the repository the user wants to work with.
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 920a5148b78..9acb7d7dc4f 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.103 2006/06/12 13:56:00 xsa Exp $ */ +/* $OpenBSD: cvs.c,v 1.104 2006/06/13 06:53:45 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> @@ -230,7 +230,7 @@ main(int argc, char **argv) CVS_PATH_ROOT); if (stat(fpath, &st) == -1 && cvs_cmdop != CVS_OP_INIT) { if (errno == ENOENT) - fatal("'%s' does not seem to be a valid repository", + fatal("repository '%s' does not exist", current_cvsroot->cr_dir); else fatal("%s: %s", current_cvsroot->cr_dir, |