summaryrefslogtreecommitdiff
path: root/ext/dbase/dbf_misc.c
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-05-07 02:38:05 +0000
committerSascha Schumann <sas@php.net>2000-05-07 02:38:05 +0000
commit695313577422e44d9fbd1c38d21ab509d45fcbe7 (patch)
tree5f7337a4c592a1d293e8716716e4407a54dd139a /ext/dbase/dbf_misc.c
parentb81cc1daf4a691f90c8546640bd06ffb5b18abeb (diff)
downloadphp-git-695313577422e44d9fbd1c38d21ab509d45fcbe7.tar.gz
s/localtime_r/php_localtime_r/
Diffstat (limited to 'ext/dbase/dbf_misc.c')
-rw-r--r--ext/dbase/dbf_misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/dbase/dbf_misc.c b/ext/dbase/dbf_misc.c
index dea7068a66..0efb23ab16 100644
--- a/ext/dbase/dbf_misc.c
+++ b/ext/dbase/dbf_misc.c
@@ -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);