From f58faf3ad329f15d74f0ff1205942dcbedd9f57c Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Tue, 12 Feb 2013 22:48:58 +0100 Subject: [PATCH] Context: void* is more appropriate for the module data pointer than char* --- citadel/context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/context.h b/citadel/context.h index 1d152a413..6d93249b9 100644 --- a/citadel/context.h +++ b/citadel/context.h @@ -134,7 +134,7 @@ struct CitContext { int msg4_dont_decode; /* Dynamically allocated session data */ - char *session_specific_data; /* Used by individual protocol modules */ + void *session_specific_data; /* Used by individual protocol modules */ struct cit_ical *CIT_ICAL; /* calendaring data */ struct ma_info *ma; /* multipart/alternative data */ const char *ServiceName; /* readable purpose of this session */ -- 2.30.2