From: wessels <> Date: Tue, 15 Jul 1997 05:50:17 +0000 (+0000) Subject: warning: initialization from incompatible pointer type X-Git-Tag: SQUID_3_0_PRE1~4891 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=93f70dd99bc89519054177aff2ada1a5abacaccf;p=thirdparty%2Fsquid.git warning: initialization from incompatible pointer type --- diff --git a/src/gopher.cc b/src/gopher.cc index ca315232e0..e5a4c77c76 100644 --- a/src/gopher.cc +++ b/src/gopher.cc @@ -1,5 +1,5 @@ /* - * $Id: gopher.cc,v 1.87 1997/07/14 23:45:00 wessels Exp $ + * $Id: gopher.cc,v 1.88 1997/07/14 23:50:17 wessels Exp $ * * DEBUG: section 10 Gopher * AUTHOR: Harvest Derived @@ -913,9 +913,8 @@ static void gopherConnectDone(int fd, int status, void *data) { GopherStateData *gopherState = data; - request_t *request = gopherState->request; if (status == COMM_ERR_DNS) { - debug(10, 4) ("gopherConnectDone: Unknown host: %s\n", request->host); + debug(10, 4) ("gopherConnectDone: Unknown host: %s\n", gopherState->host); storeAbort(gopherState->entry, ERR_DNS_FAIL, dns_error_message, 0); comm_close(fd); } else if (status != COMM_OK) {