From: wessels <> Date: Thu, 20 Aug 1998 04:00:56 +0000 (+0000) Subject: thought I already committed that X-Git-Tag: SQUID_3_0_PRE1~2843 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9eaade81cbe5ed2315514310e61a51103985c51f;p=thirdparty%2Fsquid.git thought I already committed that --- diff --git a/include/radix.h b/include/radix.h index 03406b94f4..5dcf10fcfd 100644 --- a/include/radix.h +++ b/include/radix.h @@ -54,8 +54,8 @@ struct radix_node { #define RNF_ACTIVE 4 /* This node is alive (for rtfree) */ union { struct { /* leaf only data: */ - void * rn_Key; /* object of search */ - void * rn_Mask; /* netmask, if present */ + char * rn_Key; /* object of search */ + char * rn_Mask; /* netmask, if present */ struct radix_node *rn_Dupedkey; } rn_leaf; struct { /* node only data: */ @@ -88,7 +88,7 @@ extern struct radix_mask { unsigned char rm_flags; /* cf. rn_flags */ struct radix_mask *rm_mklist; /* more masks to try */ union { - void * rmu_mask; /* the mask */ + char * rmu_mask; /* the mask */ struct radix_node *rmu_leaf; /* for normal routes */ } rm_rmu; int rm_refs; /* # of references to this struct */