![]()
From: jose.kahan@w3.org
Date: Tue Nov 23 1999 - 08:50:09 CST
Ok, I solved the problem and found a new bug :)
Looks like this problem was just a typo:
Index: setup.c
===================================================================
RCS file: /cvs/hypermail/hypermail/src/setup.c,v
retrieving revision 1.19
diff -r1.19 setup.c
423c423
< (void *)add_list((struct hmlist *)cfg[i].value, tpstr);
--- > (void *)add_list(*(struct hmlist **)cfg[i].value, tpstr); I made the change and committed it already. It's strange that purify hadn't detected it before, but maybe you needed a .hmrc with prefered_types to trigger it. The second bug or problem that I found is that the .hmrc resources don't seem to override the default values, but rather get added next to the them. I tested this with inline_types. This is not a blocking bug, but it may make it hard to configure hypermail. -Jose
![]()