------- You are receiving this mail because: ------- You are on the CC list for the bug.
http://bugs.exim.org/show_bug.cgi?id=1526 Phil Pennock <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|[email protected] |[email protected] --- Comment #1 from Phil Pennock <[email protected]> 2014-09-09 00:16:57 --- The file src/tlscert-openssl.c has this: 105 static uschar * 106 bio_string_time_to_int(BIO * bp, int len) 107 { 108 uschar * cp = US""; 109 struct tm t; 110 len = len > 0 ? (int) BIO_get_mem_data(bp, &cp) : 0; 111 /*XXX %Z might be glibc-specific? */ 112 (void) strptime(CS cp, "%b%t%e%t%T%t%Y%t%Z", &t); 113 BIO_free(bp); 114 /*XXX timegm might not be portable? */ 115 return string_sprintf("%u", (unsigned) timegm(&t)); 116 } Hey Jeremy: you're right, it's not. :) -- Configure bugmail: http://bugs.exim.org/userprefs.cgi?tab=email -- ## List details at https://lists.exim.org/mailman/listinfo/exim-dev Exim details at http://www.exim.org/ ##
