From c6022b3b85dedeae9465e5bb2fe38fdb35f21ee9 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Sun, 26 Jan 2014 12:56:32 +0000 Subject: Drop support of Visual Studio 2005 * Remove _MSC_VER < 1500 check * Cleanup config.nmake See http://www.wireshark.org/lists/wireshark-dev/201305/msg00159.html svn path=/trunk/; revision=54965 --- ui/gtk/summary_dlg.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'ui/gtk/summary_dlg.c') diff --git a/ui/gtk/summary_dlg.c b/ui/gtk/summary_dlg.c index a64bcc15e4..67a0878b9e 100644 --- a/ui/gtk/summary_dlg.c +++ b/ui/gtk/summary_dlg.c @@ -117,14 +117,6 @@ time_to_string(char *string_buff, gulong string_buff_size, time_t ti_time) { struct tm *ti_tm; -#if (defined _WIN32) && (_MSC_VER < 1500) - /* calling localtime() 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 */ - if (ti_time > 2000000000) { - ti_tm = NULL; - } else -#endif ti_tm = localtime(&ti_time); if (ti_tm == NULL) { g_snprintf(string_buff, string_buff_size, "Not representable"); -- cgit v1.2.3