<HTML><BODY>Hello.<br><br>I have found a bug in starter which occurs on 64bit systems.<br>In confread.h file in struct starter_config the following fields are defined:<br>u_int    crlcheckinterval;<br>u_int    keep_alive;<br><br>u_int is typedefed as unsigned int, which is still 32 bit wide on 64 bit systems.<br>But these fields are defined as ARG_TIME in token_info. And then they are referenced as time_t which is 64 bit wide on 64 bit systems.<br>The bug reflects on 'cachecrls' field which overwritten by 'crlcheckinterval'.<br><br>Please, check other u_int and ARG_TIME fields. Maybe there are some more bugs.<br><br>Best regards, Vladimir<br><br><br></BODY></HTML>