74cf566d92d610c2dc090a0dc7f77651c0fb0635 |
|
14-May-2000 |
David Lawrence <source@isc.org> |
"context.c", line 195: remark(1506): implicit conversion from "unsigned int"
to "long": rounding, sign extension, or loss of accuracy may result
Fixed by ensuring unsigned long ctx->timeout does not overflow the signed
long timeout.tv_sec. |
8764af86f7ec1641d8b79d9a21c6c13f0a5122fd |
|
08-May-2000 |
David Lawrence <source@isc.org> |
/*
* Compilers that use an older prototype for recvfrom() will
* warn about the type of the sixth parameter, fromlen. It
* is now standardized as unsigned, specifically as socklen_t.
*/
(... but the code itself still uses unsigned int. This comment was added
because HP/UX is complaining now even as other compilers stopped complaining
when it was changed from signed int to unsigned int.) |