diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-03 04:56:28 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-03 04:56:28 +0000 |
commit | 6fc36c45a96695167d698eab07a523f21aba0742 (patch) | |
tree | 151cffb8fbee07aaa231f82d90529df7fa6a9afe /usr.bin | |
parent | a0f26bf514f13ad7bfd75529410888cbd4bc947d (diff) |
Don't MKADMIN on cvs_file_get()
Diffstat (limited to 'usr.bin')
-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); |