summaryrefslogtreecommitdiff
path: root/source3/lib/replace/timegm.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/replace/timegm.c')
-rw-r--r--source3/lib/replace/timegm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/replace/timegm.c b/source3/lib/replace/timegm.c
index ff90626d44..8db9bb4e09 100644
--- a/source3/lib/replace/timegm.c
+++ b/source3/lib/replace/timegm.c
@@ -44,7 +44,7 @@ static int is_leap(unsigned y)
return (y % 4) == 0 && ((y % 100) != 0 || (y % 400) == 0);
}
-time_t timegm(struct tm *tm)
+time_t rep_timegm(struct tm *tm)
{
static const unsigned ndays[2][12] ={
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},