From deb4f08cb21d8a5306b325d811c3448b46ad18d0 Mon Sep 17 00:00:00 2001 From: Pascal Quantin Date: Fri, 4 Jan 2013 14:56:27 +0000 Subject: Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8105 : Allow use of huges values for localtime / ctime / gmtime with MSVC 2008 or later svn path=/trunk/; revision=46930 --- capinfos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'capinfos.c') diff --git a/capinfos.c b/capinfos.c index a799be22bf..96d7de998a 100644 --- a/capinfos.c +++ b/capinfos.c @@ -395,7 +395,7 @@ time_string(time_t timer, capture_info *cf_info, gboolean want_lf) g_snprintf(time_string_buf, 20, "%lu%s", (unsigned long)timer, lf); return time_string_buf; } else { -#ifdef _MSC_VER +#if (defined _WIN32) && (_MSC_VER < 1500) /* calling localtime(), and thus ctime(), on MSVC 2005 with huge values causes it to crash */ /* XXX - find the exact value that still does work */ /* XXX - using _USE_32BIT_TIME_T might be another way to circumvent this problem */ -- cgit v1.2.3