diff options
author | 2004-08-03 04:56:27 +0000 | |
---|---|---|
committer | 2004-08-03 04:56:27 +0000 | |
commit | a73697a41ff21c11d7f02d290dca756aef1c4268 (patch) | |
tree | 82e7b9ca08e77964df62f3d6fb847754d63d5a59 | |
parent | Fix an annoying error message on checkouts by loading administrative (diff) | |
download | wireguard-openbsd-a73697a41ff21c11d7f02d290dca756aef1c4268.tar.xz wireguard-openbsd-a73697a41ff21c11d7f02d290dca756aef1c4268.zip |
Don't MKADMIN on cvs_file_get()
-rw-r--r-- | usr.bin/cvs/checkout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/checkout.c b/usr.bin/cvs/checkout.c index 447bd1865e7..93e764254c2 100644 --- a/usr.bin/cvs/checkout.c +++ b/usr.bin/cvs/checkout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checkout.c,v 1.6 2004/07/30 18:14:07 jfb Exp $ */ +/* $OpenBSD: checkout.c,v 1.7 2004/08/03 04:56:27 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -70,7 +70,7 @@ cvs_checkout(int argc, char **argv) return (EX_USAGE); } - dir = cvs_file_get(".", CF_IGNORE|CF_MKADMIN); + dir = cvs_file_get(".", CF_IGNORE); root = CVS_DIR_ROOT(dir); if (root->cr_method != CVS_METHOD_LOCAL) { cvs_connect(root); |