diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-06-13 06:53:46 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-06-13 06:53:46 +0000 |
commit | 788909a5b70aea7867b5347fd4ae7a7401833f31 (patch) | |
tree | de7daeb0c1bb80bb4d9fd0ee3ff5ddd24ccc1e4a /usr.bin | |
parent | 5a841cfb4f3652e86b5f3614568c445e48f2c68b (diff) |
be more accurate in describing what happened
when we cannot see the repository the user wants to work with.
Diffstat (limited to 'usr.bin')
-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, |