http://bugzilla.spamassassin.org/show_bug.cgi?id=3452
------- Additional Comments From [EMAIL PROTECTED] 2004-05-31 12:21 ------- I looked at the warning in spamc.c:240 -- the issue the compiler doesn't like is that transport.port is unsigned short while atoi() returns int. What's the correct way to fix this? casting to (unsigned short) explicitly? To get rid of the libspamc.c:8xx we should probably use size_t instead of int -- is that portable? libspamc.c:947 isn't avoidable as we need an "endless" loop there. The other warnings seem to be caused by missing #includes on Windows and some weird stuff in getop.c at which I didn�t want to look at ;-) To avoid the conversion stuff, maybe /W3 is enough? ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.
