diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-07-17 20:29:59 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2007-07-17 20:29:59 +0000 |
commit | 53bb6a04e37d4b121da16c0d3119647d4e2d9ca7 (patch) | |
tree | 42aeff3e4d872c522412b765841b2a9da90a690a /usr.bin | |
parent | 3535fc9b579a3293080311606b7b2a9c6a72d482 (diff) |
Forgot this part about rlog not needing the Directory request to be sent.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index c2bba090508..b9f1bfdbe2d 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.70 2007/07/17 16:13:39 xsa Exp $ */ +/* $OpenBSD: client.c,v 1.71 2007/07/17 20:29:58 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -82,7 +82,7 @@ struct cvs_req cvs_requests[] = { REQ_NEEDDIR }, { "diff", 0, cvs_server_diff, REQ_NEEDDIR }, { "log", 0, cvs_server_log, REQ_NEEDDIR }, - { "rlog", 0, cvs_server_rlog, REQ_NEEDDIR }, + { "rlog", 0, cvs_server_rlog, 0 }, { "add", 0, cvs_server_add, REQ_NEEDDIR }, { "remove", 0, cvs_server_remove, REQ_NEEDDIR }, |