diff options
author | 2006-05-29 17:55:39 +0000 | |
---|---|---|
committer | 2006-05-29 17:55:39 +0000 | |
commit | 7c16623b410fa326351df1f8cb21fbcbc3aeef0d (patch) | |
tree | a663ddfb4bb849debe123d3a7214a0c6f5f744ab | |
parent | The end pointer to fn_print() could possibly point behind the captured (diff) | |
download | wireguard-openbsd-7c16623b410fa326351df1f8cb21fbcbc3aeef0d.tar.xz wireguard-openbsd-7c16623b410fa326351df1f8cb21fbcbc3aeef0d.zip |
fix option string
-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 }; |