summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authorcmiller@zippy.cornsilk.net <>2008-04-03 13:14:57 -0400
committercmiller@zippy.cornsilk.net <>2008-04-03 13:14:57 -0400
commit7e78633f81798068e599cbd467ceb094ef5e5224 (patch)
treeb76b47d30b33f51df8172b3d28204a2a0497c7d6 /sql-common
parenteac3a26efab4f3886ba68ed24cc1ddfc453dfa0e (diff)
parent9ff7a0cedca7b92b5c16f282e52e83460a6d7092 (diff)
downloadmariadb-git-7e78633f81798068e599cbd467ceb094ef5e5224.tar.gz
Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug26294/my50-bug26294
into zippy.cornsilk.net:/home/cmiller/work/mysql/bug26294/my51-bug26294
Diffstat (limited to 'sql-common')
-rw-r--r--sql-common/my_time.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql-common/my_time.c b/sql-common/my_time.c
index 543a925681b..23532027883 100644
--- a/sql-common/my_time.c
+++ b/sql-common/my_time.c
@@ -701,9 +701,9 @@ int check_time_range(struct st_mysql_time *my_time, int *warning)
Prepare offset of system time zone from UTC for my_system_gmt_sec() func.
SYNOPSIS
- init_time()
+ my_init_time()
*/
-void init_time(void)
+void my_init_time(void)
{
time_t seconds;
struct tm *l_time,tm_tmp;
@@ -792,7 +792,7 @@ long calc_daynr(uint year,uint month,uint day)
NOTES
The idea is to cache the time zone offset from UTC (including daylight
saving time) for the next call to make things faster. But currently we
- just calculate this offset during startup (by calling init_time()
+ just calculate this offset during startup (by calling my_init_time()
function) and use it all the time.
Time value provided should be legal time value (e.g. '2003-01-01 25:00:00'
is not allowed).