From: Russell Bryant Date: Tue, 5 Apr 2005 05:59:30 +0000 (+0000) Subject: FreeBSD compile warning (bug #3938) X-Git-Tag: 1.0.11.1~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f0e43be23e657b9c11051e1781b324c81d9b696;p=thirdparty%2Fasterisk.git FreeBSD compile warning (bug #3938) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@5393 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/stdtime/localtime.c b/stdtime/localtime.c index 1f6309e3f4..7c474acf1a 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 */