diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-06-20 16:25:47 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-06-20 16:25:47 +0000 |
commit | 7a248a53ae6ca87c8bf92d9b6864d8bebe26bca1 (patch) | |
tree | 491b7dca5c3af23470164f055fd8c08c884c8b2d /usr.bin/cvs/history.c | |
parent | 1de223dff5cc1f2851014c1ed502994df83eb709 (diff) |
Add missing `his' command alias. OK joris@.
Diffstat (limited to 'usr.bin/cvs/history.c')
-rw-r--r-- | usr.bin/cvs/history.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/history.c b/usr.bin/cvs/history.c index 79c6e8b5674..04eaedb4d3c 100644 --- a/usr.bin/cvs/history.c +++ b/usr.bin/cvs/history.c @@ -1,4 +1,4 @@ -/* $OpenBSD: history.c,v 1.28 2007/06/18 17:54:13 joris Exp $ */ +/* $OpenBSD: history.c,v 1.29 2007/06/20 16:25:46 xsa Exp $ */ /* * Copyright (c) 2007 Joris Vink <joris@openbsd.org> * @@ -31,7 +31,7 @@ void cvs_history_local(struct cvs_file *); struct cvs_cmd cvs_cmd_history = { CVS_OP_HISTORY, 0, "history", - { "hi" }, /* omghi2you */ + { "hi", "his" }, /* omghi2you */ "Display the history of actions done in the base repository", "[-ac]", "ac", |