From: hno <> Date: Sun, 10 Nov 2002 11:23:08 +0000 (+0000) Subject: More IDENT C typecasts X-Git-Tag: SQUID_3_0_PRE1~535 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc59d02a301e1d9bcf59b25ef6975c46036ab38f;p=thirdparty%2Fsquid.git More IDENT C typecasts --- diff --git a/src/client_side.cc b/src/client_side.cc index 3d1efec209..cdcde6110e 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.606 2002/10/25 03:47:03 robertc Exp $ + * $Id: client_side.cc,v 1.607 2002/11/10 04:23:08 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -263,7 +263,7 @@ clientSocketContextNew(clientHttpRequest * http) static void clientIdentDone(const char *ident, void *data) { - ConnStateData *conn = data; + ConnStateData *conn = (ConnStateData *)data; xstrncpy(conn->rfc931, ident ? ident : dash_str, USER_IDENT_SZ); }