diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-14 09:47:53 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-11-14 09:47:53 +0000 |
commit | 4df1d752e6e0725b6404747dfde81baa24e7c3b9 (patch) | |
tree | b596bb820721d2fc4e75a743f47597c4e82ffd58 /usr.bin/cvs/cmd.c | |
parent | 9dc03505e8965e51336ecaf16d7c2fda9a86b75d (diff) |
Bring back version command. Still needs tweaks to make the
gnu cvs client<->opencvs server setup work. Rest works fine.
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 fbd1696b316..563f1f79e1c 100644 --- a/usr.bin/cvs/cmd.c +++ b/usr.bin/cvs/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.53 2006/11/13 12:57:03 xsa Exp $ */ +/* $OpenBSD: cmd.c,v 1.54 2006/11/14 09:47:52 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -46,6 +46,7 @@ struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_status, &cvs_cmd_tag, &cvs_cmd_update, + &cvs_cmd_version, #if 0 &cvs_cmd_annotate, &cvs_cmd_checkout, @@ -62,7 +63,6 @@ struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_rtag, &cvs_cmd_unedit, &cvs_cmd_update, - &cvs_cmd_version, &cvs_cmd_watch, &cvs_cmd_watchers, #endif |