]> granicus.if.org Git - php/commitdiff
s/localtime_r/php_localtime_r/
authorSascha Schumann <sas@php.net>
Sun, 7 May 2000 02:38:05 +0000 (02:38 +0000)
committerSascha Schumann <sas@php.net>
Sun, 7 May 2000 02:38:05 +0000 (02:38 +0000)
ext/dbase/dbf_misc.c

index dea7068a665857817f7ef1114ea6b9d93b96f0e4..0efb23ab16102cde1ff3cbf25c6ebb4b723735d5 100644 (file)
@@ -157,7 +157,7 @@ char *db_cur_date(char *cp)
        time_t    c_time;
 
        c_time = time((time_t *)NULL);
-       ctm = localtime_r(&c_time, &tmbuf);
+       ctm = php_localtime_r(&c_time, &tmbuf);
        if (cp == NULL)
                cp = (char *)malloc(9);