diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2006-05-29 17:55:40 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2006-05-29 17:55:40 +0000 |
commit | 2ec8da2a49f21af533d79eab964300af832434a4 (patch) | |
tree | f095461786e1d138eabbc012e0fbb0d7982007e0 /usr.bin/cvs/add.c | |
parent | 025c4b78bee1c06d28ef268ef542bb2e93335a95 (diff) |
fix option string
Diffstat (limited to 'usr.bin/cvs/add.c')
-rw-r--r-- | usr.bin/cvs/add.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/add.c b/usr.bin/cvs/add.c index 927536386df..5e5a3a589df 100644 --- a/usr.bin/cvs/add.c +++ b/usr.bin/cvs/add.c @@ -1,4 +1,4 @@ -/* $OpenBSD: add.c,v 1.46 2006/05/29 06:25:06 joris Exp $ */ +/* $OpenBSD: add.c,v 1.47 2006/05/29 17:55:39 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -35,7 +35,7 @@ struct cvs_cmd cvs_cmd_add = { { "ad", "new" }, "Add a new file or directory to the repository", "[-m message] ...", - "m", + "m:", NULL, cvs_add }; |