summaryrefslogtreecommitdiff
path: root/sql-common
diff options
context:
space:
mode:
authorunknown <cmiller@zippy.cornsilk.net>2008-04-03 13:19:55 -0400
committerunknown <cmiller@zippy.cornsilk.net>2008-04-03 13:19:55 -0400
commitb36b860edf833869cbc0a0e9f7963740afad33e1 (patch)
tree71b0dcbca858489706456fd62e9823c65cf37742 /sql-common
parenta0d02a942a99461cdc737587244b1db1542e9d7a (diff)
parent90112d1175b1043850f50cfae2088dc143e4c62e (diff)
downloadmariadb-git-b36b860edf833869cbc0a0e9f7963740afad33e1.tar.gz
Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug26294/my50-bug26294
into zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-build sql/tztime.cc: Auto merged
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 ecc5aaf8af2..1781251fca1 100644
--- a/sql-common/my_time.c
+++ b/sql-common/my_time.c
@@ -704,9 +704,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;
@@ -795,7 +795,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).