diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-06-27 20:27:39 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-06-27 20:27:39 +0000 |
commit | 0dcdf98db3bea6d4c6994f2b8fec6270e5a959d5 (patch) | |
tree | 780bf07720bc61797960750f0784d27d0a932697 | |
parent | 7b4db731d6a88942c663dfc7f3ffb20a4ef1b5b5 (diff) |
Remove last bits about login and logout commands, which will never be
implemented anyway. OK ray@ niallo@.
-rw-r--r-- | usr.bin/cvs/cmd.c | 8 | ||||
-rw-r--r-- | usr.bin/cvs/cvs.h | 4 |
2 files changed, 2 insertions, 10 deletions
diff --git a/usr.bin/cvs/cmd.c b/usr.bin/cvs/cmd.c index b4074a27426..d4cb3dffbd2 100644 --- a/usr.bin/cvs/cmd.c +++ b/usr.bin/cvs/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.60 2007/06/26 18:02:43 xsa Exp $ */ +/* $OpenBSD: cmd.c,v 1.61 2007/06/27 20:27:38 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -53,17 +53,11 @@ struct cvs_cmd *cvs_cdt[] = { &cvs_cmd_update, &cvs_cmd_version, #if 0 - &cvs_cmd_checkout, &cvs_cmd_edit, &cvs_cmd_editors, -#if 0 - &cvs_cmd_login, - &cvs_cmd_logout, -#endif &cvs_cmd_rdiff, &cvs_cmd_rtag, &cvs_cmd_unedit, - &cvs_cmd_update, &cvs_cmd_watch, &cvs_cmd_watchers, #endif diff --git a/usr.bin/cvs/cvs.h b/usr.bin/cvs/cvs.h index 0f1b66b4c7b..bfc147749d7 100644 --- a/usr.bin/cvs/cvs.h +++ b/usr.bin/cvs/cvs.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.h,v 1.138 2007/06/27 03:58:16 joris Exp $ */ +/* $OpenBSD: cvs.h,v 1.139 2007/06/27 20:27:38 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -324,8 +324,6 @@ extern struct cvs_cmd cvs_cmd_history; extern struct cvs_cmd cvs_cmd_import; extern struct cvs_cmd cvs_cmd_init; extern struct cvs_cmd cvs_cmd_log; -extern struct cvs_cmd cvs_cmd_login; -extern struct cvs_cmd cvs_cmd_logout; extern struct cvs_cmd cvs_cmd_rdiff; extern struct cvs_cmd cvs_cmd_release; extern struct cvs_cmd cvs_cmd_remove; |