diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-19 00:32:27 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-19 00:32:27 +0000 |
commit | 1e6bb374f0732bf9752bfc4c4ebde9601a7ffa4d (patch) | |
tree | e32ead283f4d4eb5e77ec322a444e82d51164c75 | |
parent | 25912fafa9126985433ffb79aea454362a3fc550 (diff) |
unbreak the commit command.
-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 0659d7dede0..f837ecdf442 100644 --- a/usr.bin/cvs/commit.c +++ b/usr.bin/cvs/commit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: commit.c,v 1.40 2005/07/14 06:50:50 xsa Exp $ */ +/* $OpenBSD: commit.c,v 1.41 2005/07/19 00:32:26 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -61,7 +61,7 @@ struct cvs_cmd cvs_cmd_commit = { cvs_commit_local, NULL, NULL, - CVS_CMD_ALLOWSPEC | CVS_CMD_SENDARGS2 + CVS_CMD_SENDDIR | CVS_CMD_ALLOWSPEC | CVS_CMD_SENDARGS2 }; static char *mfile = NULL; |