From cc59d02a301e1d9bcf59b25ef6975c46036ab38f Mon Sep 17 00:00:00 2001 From: hno <> Date: Sun, 10 Nov 2002 11:23:08 +0000 Subject: [PATCH] More IDENT C typecasts --- src/client_side.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } -- 2.47.3