Add a missing begin-comment to the DNS_USE_OPENSSL_FOR_ID code in evdns.c.
svn:r426
o Fix a memory leak in which failed HTTP connections whould not free the request object
o Make adding of array members in event_rpcgen more efficient, but doubling memory allocation
o Fix a memory leak in the DNS server
+ o Fix compilation when DNS_USE_OPENSSL_FOR_ID is enabled
if (RAND_pseudo_bytes((u8 *) &trans_id, 2) == -1) {
/* in the case that the RAND call fails we back */
/* down to using gettimeofday. */
- struct timeval tv;
+ /*
+ struct timeval tv;
gettimeofday(&tv, NULL);
- trans_id = tv.tv_usec & 0xffff; */
+ trans_id = tv.tv_usec & 0xffff;
+ */
abort();
}
#endif