diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-04-24 01:56:37 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-04-24 01:56:37 +0000 |
commit | 4b0a825cecb57d4bec8458ce56d33b73860b36ac (patch) | |
tree | 84658be36ce001e0af6079fe2bb3774598783934 /usr.bin/cvs | |
parent | a2db1d1329f39094da71a90aa8dd2a2ca4fa46da (diff) |
add missing CVS_CMD_ALLOWSPEC flag
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/commit.c b/usr.bin/cvs/commit.c index a05c611eb67..4d656d6f4ee 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.29 2005/04/19 02:04:56 jfb Exp $ */ +/* $OpenBSD: commit.c,v 1.30 2005/04/24 01:56:36 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -54,7 +54,7 @@ struct cvs_cmd_info cvs_commit = { cvs_commit_helper, CF_RECURSE | CF_IGNORE | CF_SORT, CVS_REQ_CI, - CVS_CMD_NEEDLOG | CVS_CMD_SENDDIR | CVS_CMD_SENDARGS2 + CVS_CMD_ALLOWSPEC | CVS_CMD_NEEDLOG | CVS_CMD_SENDDIR | CVS_CMD_SENDARGS2 }; static char *mfile = NULL; |