summaryrefslogtreecommitdiffstats
path: root/usr.bin/cvs/client.c
diff options
context:
space:
mode:
authorjoris <joris@openbsd.org>2007-09-10 19:11:08 +0000
committerjoris <joris@openbsd.org>2007-09-10 19:11:08 +0000
commit47c33804566cbc2c0b2589cdf34fcb81ef470a89 (patch)
tree86ea5d57f828caec28b45680e7e93cb02be5d1a9 /usr.bin/cvs/client.c
parentIntroduce a md pmap hook, pmap_remove_holes(), which is supposed to mark (diff)
downloadwireguard-openbsd-47c33804566cbc2c0b2589cdf34fcb81ef470a89.tar.xz
wireguard-openbsd-47c33804566cbc2c0b2589cdf34fcb81ef470a89.zip
remove my addition of portnumber for rsh in CVSROOT.
while it sounds like a "good" idea some people convinced me otherwise. mostly because this breaks compat with GNU cvs.
Diffstat (limited to 'usr.bin/cvs/client.c')
-rw-r--r--usr.bin/cvs/client.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c
index 0902ef60bc0..c1ededca87d 100644
--- a/usr.bin/cvs/client.c
+++ b/usr.bin/cvs/client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: client.c,v 1.78 2007/09/10 14:06:14 joris Exp $ */
+/* $OpenBSD: client.c,v 1.79 2007/09/10 19:11:08 joris Exp $ */
/*
* Copyright (c) 2006 Joris Vink <joris@openbsd.org>
*
@@ -234,11 +234,6 @@ cvs_client_connect_to_server(void)
argv[argc++] = current_cvsroot->cr_user;
}
- if (current_cvsroot->cr_port != NULL) {
- argv[argc++] = "-p";
- argv[argc++] = current_cvsroot->cr_port;
- }
-
argv[argc++] = current_cvsroot->cr_host;
argv[argc++] = cmd;
argv[argc++] = "server";