diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2007-01-03 21:00:44 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2007-01-03 21:00:44 +0000 |
commit | a462f7344295c7ccfc1973c825cdbd65e76aff98 (patch) | |
tree | 65b93e2dd2a2103e0cf8e8d64bdb77499d7f3ff3 /usr.bin | |
parent | fa177b4ef88b2396fdb22ed401357905b5463ce7 (diff) |
revert changes made in 1.40 - it breaks add in a remote setup
because opencvs server does not support 'wrapper-sendme-rcsOptions'
for the moment.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/client.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index 2443a40a467..77207d19d50 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.42 2007/01/03 19:27:28 joris Exp $ */ +/* $OpenBSD: client.c,v 1.43 2007/01/03 21:00:43 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -275,9 +275,6 @@ cvs_client_connect_to_server(void) if (verbosity == 2) cvs_client_send_request("Global_option -V"); - if (cvs_cmdop == CVS_OP_ADD || cvs_cmdop == CVS_OP_IMPORT) - cvs_client_send_request("wrapper-sendme-rcsOptions"); - /* XXX: If 'Set' is supported? */ TAILQ_FOREACH(vp, &cvs_variables, cv_link) cvs_client_send_request("Set %s=%s", vp->cv_name, vp->cv_val); |