From 92f29bb54d49f6d3c718396dc578814cba78c65d Mon Sep 17 00:00:00 2001 From: wessels <> Date: Thu, 9 Jan 1997 00:04:23 +0000 Subject: [PATCH] From: "Russell Street" - the identd request has to come *from* the same IP address as the original connection was made to. --- src/ident.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); -- 2.47.2