diff options
author | 2009-04-29 12:56:15 +0000 | |
---|---|---|
committer | 2009-04-29 12:56:15 +0000 | |
commit | 841abc1ba6dea42f436afd727e2c0c02f9251c03 (patch) | |
tree | 612a3c00256a29a2db3d1a08a3b3a2a3bab0a70f /usr.bin/cvs/diff.c | |
parent | regen (diff) | |
download | wireguard-openbsd-841abc1ba6dea42f436afd727e2c0c02f9251c03.tar.xz wireguard-openbsd-841abc1ba6dea42f436afd727e2c0c02f9251c03.zip |
add options 'a' and 'd' to the getopt string so
we can actually use them.
bad sthen@ and bad me for missing this :)
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 989e272c8b1..eebd662b742 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.152 2009/04/28 09:05:40 sthen Exp $ */ +/* $OpenBSD: diff.c,v 1.153 2009/04/29 12:56:15 joris Exp $ */ /* * Copyright (c) 2008 Tobias Stoeckmann <tobias@openbsd.org> * Copyright (c) 2006 Joris Vink <joris@openbsd.org> @@ -48,7 +48,7 @@ struct cvs_cmd cvs_cmd_diff = { "Show differences between revisions", "[-abcdilNnpRuw] [[-D date] [-r rev] [-D date2 | -r rev2]] " "[-k mode] [file ...]", - "bcfD:ik:lNnpr:Ruw", + "abcfdD:ik:lNnpr:Ruw", NULL, cvs_diff }; |