From 93f70dd99bc89519054177aff2ada1a5abacaccf Mon Sep 17 00:00:00 2001 From: wessels <> Date: Tue, 15 Jul 1997 05:50:17 +0000 Subject: [PATCH] warning: initialization from incompatible pointer type --- src/gopher.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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) { -- 2.47.3