diff options
author | peter <peter@FreeBSD.org> | 2001-08-20 08:47:21 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-08-20 08:47:21 +0000 |
commit | cc58cb8636b077501ed9b72fea9773e63adebdc0 (patch) | |
tree | 7dba37eede945d74051898f0c7b78db2140c71ed /contrib | |
parent | 7995afce130dc9f1fe9268cbb2475274b3dfb585 (diff) | |
download | FreeBSD-src-cc58cb8636b077501ed9b72fea9773e63adebdc0.zip FreeBSD-src-cc58cb8636b077501ed9b72fea9773e63adebdc0.tar.gz |
Merge vendor branch onto mainline (try to fix HAVE_KERBEROS)
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/cvs/src/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cvs/src/client.c b/contrib/cvs/src/client.c index d166c60..77ab4c8 100644 --- a/contrib/cvs/src/client.c +++ b/contrib/cvs/src/client.c @@ -4121,13 +4121,13 @@ start_tcp_server (tofdp, fromfdp) { fprintf (stderr, " -> Connecting to %s(%s):%d\n", current_parsed_root->hostname, - inet_ntoa (client_sai.sin_addr), port); + inet_ntoa (sin.sin_addr), port); } if (connect (s, (struct sockaddr *) &sin, sizeof sin) < 0) error (1, 0, "connect to %s(%s):%d failed: %s", current_parsed_root->hostname, - inet_ntoa (client_sai.sin_addr), + inet_ntoa (sin.sin_addr), port, SOCK_STRERROR (SOCK_ERRNO)); { |