From ac8e7b96f4566c7240145cfc146acd3b9538b01c Mon Sep 17 00:00:00 2001 From: Zeev Suraski Date: Wed, 19 Apr 2000 23:46:26 +0000 Subject: [PATCH] Fix Win32 compilation. Hillarious April 1st joke! --- ext/standard/info.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/ext/standard/info.c b/ext/standard/info.c index 838fe55487..d8e2eafbb1 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -123,13 +123,8 @@ PHPAPI void php_print_info(int flag) char **env,*tmp1,*tmp2; char *php_uname; int expose_php = INI_INT("expose_php"); - time_t the_time; struct tm *ta, tmbuf; - - the_time = time(NULL); - ta = localtime_r(&the_time, &tmbuf); - #ifdef PHP_WIN32 char php_windows_uname[256]; DWORD dwBuild=0; @@ -140,6 +135,8 @@ PHPAPI void php_print_info(int flag) ELS_FETCH(); SLS_FETCH(); + the_time = time(NULL); + ta = localtime_r(&the_time, &tmbuf); if (flag & PHP_INFO_GENERAL) { #ifdef PHP_WIN32 -- 2.40.0