- Nov 26, 2015
-
-
rswindell authored
-1 on success and 0 on failure. Luckily, no caller has been checking the return value.
-
- Nov 25, 2015
-
-
sbbs authored
the wrong timezone (off by an hour) because we were passing an uninitialized time_t value to localtime_r(). -- oops.
-
sbbs authored
time was in effect, year-round, on Linux. Use the localtime() tm_gmtoff method of detecting the local time zone offset on Linux, don't rely on the global variables 'timezone' and 'daylight' behaving as they did in Borland C/DOS. From the Linux man page: Note that the variable daylight does not indicate that daylight saving time applies right now.
-
rswindell authored
-
- Nov 06, 2015
-
-
deuce authored
Test for sdl12-config before sdl-config for systems that have SDL 2.0 installed as sdl-config.
-
- Oct 28, 2015
-
-
deuce authored
-
- Oct 04, 2015
- Sep 29, 2015
- Sep 28, 2015
-
-
sbbs authored
tools (caused build failure on redefinition of functions).
-
deuce authored
-
deuce authored
Rename entry_buf to int_buf since it only ever holds an integer now.
-
deuce authored
value for the Win32 asprintf().
-
deuce authored
if I can reuse a va_list argument.
-
rswindell authored
rename to parse_byte_count(), so we can use it more places (e.g. jsexec).
-
deuce authored
-
deuce authored
-
- Sep 02, 2015
-
-
rswindell authored
used to, that is, it stores the broken-down date/time values in the time_t equivalent for the local timezone, regardless of what value is in the zone element of the xpDateTime_t.
-
deuce authored
_mkgmtime() however didn't appear until MSVCR80.dll, so the current use of MSVCRT.DLL is broken and SyncTERM won't build.
-
- Aug 30, 2015
-
-
rswindell authored
-
- Aug 29, 2015
-
-
rswindell authored
to the local timezone equivalent (not adjusting for offset). Now using timegm() (aka mkgmtime()) to fix this scenario. Times in zones other than the local time zone or UTC are explicitly not supported by this function now (returns INVALID_TIME in that scenario).
-
rswindell authored
equivalent to sane_mktime() for broken-down date/time's in UTC.
-
rswindell authored
from xpdatetime.c to support more date string formats (e.g. the JavaScript Date.toISOString() format).
-
- Aug 26, 2015
-
-
rswindell authored
failed login attempt client IP addresses on Windows.
-
- Aug 22, 2015
- Aug 20, 2015
- May 11, 2015
-
-
rswindell authored
-
- Apr 28, 2015
-
-
deuce authored
-
- Apr 21, 2015
-
-
deuce authored
really may to what is listed.
-
- Apr 18, 2015
-
-
rswindell authored
follow the special boolean keywords "True", "Yes", or "On", treat the value as a logical true (1). Previously, if the boolean keyword was followed by a semicolon (no whitespace separation) or any text with whitespace separation, the value would be treated as a logical false (0). The example sexpots.ini at wiki.synchro.net has comments following some "true" values which caused them to be interpretted as "false". Bug reported via reddit by FozzTexx.
-