diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 00:44:14 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-23 00:44:14 +0000 |
commit | 1412e6d9242de1b1e76f24321e449e263981995c (patch) | |
tree | b4722df241668c005da88ac9d72359795b2843d1 | |
parent | 9885bd143f36a0b50548f00062fbe3c9358144f6 (diff) |
add missing "Remove-entry" response in cvs_responses table
-rw-r--r-- | usr.bin/cvs/proto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index cc0b41e7165..f08fffee75d 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.62 2005/07/19 15:30:37 xsa Exp $ */ +/* $OpenBSD: proto.c,v 1.63 2005/07/23 00:44:13 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -130,6 +130,7 @@ struct cvs_resp cvs_responses[] = { { CVS_RESP_UPDEXIST, "Update-existing" }, { CVS_RESP_MERGED, "Merged" }, { CVS_RESP_REMOVED, "Removed" }, + { CVS_RESP_RMENTRY, "Remove-entry" }, { CVS_RESP_CKSUM, "Checksum" }, { CVS_RESP_CLRSTATDIR, "Clear-static-directory" }, { CVS_RESP_SETSTATDIR, "Set-static-directory" }, |