From: Tilghman Lesher Date: Sat, 27 Nov 2010 10:39:01 +0000 (+0000) Subject: 18 characters is too short for most date/times (20 is the usual, but we add more... X-Git-Tag: 1.6.2.16-rc1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=130924af07f38b172191392c427b929f8c97e722;p=thirdparty%2Fasterisk.git 18 characters is too short for most date/times (20 is the usual, but we add more in case of greater precision). (closes issue #18369) Reported by: tnakonz git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@296466 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 59ba743555..4d081d0fff 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -3470,8 +3470,8 @@ static struct ast_conference *find_conf_realtime(struct ast_channel *chan, char struct timeval now; char recordingfilename[256] = ""; char recordingformat[11] = ""; - char currenttime[19] = ""; - char eatime[19] = ""; + char currenttime[32] = ""; + char eatime[32] = ""; char bookid[51] = ""; char recordingtmp[AST_MAX_EXTENSION] = ""; char useropts[OPTIONS_LEN + 1]; /* Used for RealTime conferences */