From: wessels <> Date: Thu, 9 Jan 1997 00:04:23 +0000 (+0000) Subject: From: "Russell Street" X-Git-Tag: SQUID_3_0_PRE1~5221 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=92f29bb54d49f6d3c718396dc578814cba78c65d;p=thirdparty%2Fsquid.git From: "Russell Street" - the identd request has to come *from* the same IP address as the original connection was made to. --- diff --git a/src/ident.cc b/src/ident.cc index 6421db2dc2..38ded19b5d 100644 --- a/src/ident.cc +++ b/src/ident.cc @@ -1,5 +1,5 @@ /* - * $Id: ident.cc,v 1.23 1996/11/14 19:02:19 wessels Exp $ + * $Id: ident.cc,v 1.24 1997/01/08 17:04:23 wessels Exp $ * * DEBUG: section 30 Ident (RFC 931) * AUTHOR: Duane Wessels @@ -53,7 +53,7 @@ identStart(int fd, icpStateData * icpState, void (*callback) _PARAMS((void *))) if (fd < 0) { fd = comm_open(SOCK_STREAM, 0, - Config.Addrs.tcp_outgoing, + icpState->me.sin_addr, 0, COMM_NONBLOCKING, "ident");