From 9f5b92a27f67c8622fee2baf193ca8992465cca1 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" <kpfleming@digium.com> Date: Sun, 3 Apr 2005 23:23:36 +0000 Subject: [PATCH] one more FreeBSD compile warning fix (bug #3938) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5374 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- stdtime/localtime.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stdtime/localtime.c b/stdtime/localtime.c index 2f9d412fda..7adaabf1df 100755 --- a/stdtime/localtime.c +++ b/stdtime/localtime.c @@ -89,7 +89,9 @@ static const char elsieid[] = "@(#)localtime.c 7.57"; static char wildabbr[] = "WILDABBR"; -static const char gmt[] = "GMT"; +/* FreeBSD defines 'zone' in 'struct tm' as non-const, so don't declare this + string as const. */ +static char gmt[] = "GMT"; struct ttinfo { /* time type information */ long tt_gmtoff; /* GMT offset in seconds */ -- GitLab