aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-11-27 10:39:01 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-11-27 10:39:01 +0000
commit4741a1dbc6f752d3c487bad77d4a3ba5d20616ea (patch)
tree9736ea534f2a727edc00190eb4e3cf7f6f0c9e4c /apps
parentec8c4c3c4d8798113cf3aaf12a96a50fb3e91870 (diff)
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: http://svn.digium.com/svn/asterisk/branches/1.6.2@296466 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_meetme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 59ba74355..4d081d0ff 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 */