diff options
author | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 18:18:45 +0000 |
---|---|---|
committer | Tobias Stoeckmann <tobias@cvs.openbsd.org> | 2008-02-03 18:18:45 +0000 |
commit | 596d463f3adebfac3f5ca7c83e6e8130fd1e39fb (patch) | |
tree | 099b0c9c755c0b7026fc21f42eb177cc08fffdbd /usr.bin/cvs/cmd.c | |
parent | 6f332ca68f94c1595e84bd2788f6dabd3d9327ad (diff) |
Added rdiff support. In order to do this, some output and option fixes
had to be done for diff, too.
OK joris@
Diffstat (limited to 'usr.bin/cvs/cmd.c')
-rw-r--r-- | usr.bin/cvs/cmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c index 9be8354dd49..94bf0b3950d 100644 --- a/usr.bin/cvs/cmd.c +++ b/usr.bin/cvs/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.67 2008/02/01 17:18:59 tobias Exp $ */ +/* $OpenBSD: cmd.c,v 1.68 2008/02/03 18:18:44 tobias Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -43,6 +43,7 @@ struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_init, &cvs_cmd_log, &cvs_cmd_rannotate, + &cvs_cmd_rdiff, &cvs_cmd_release, &cvs_cmd_remove, &cvs_cmd_rlog, @@ -55,7 +56,6 @@ struct cvs_cmd *cvs_cdt[] = { #if 0 &cvs_cmd_edit, &cvs_cmd_editors, - &cvs_cmd_rdiff, &cvs_cmd_unedit, &cvs_cmd_watch, &cvs_cmd_watchers, |