From 6df3b851e31785b81dd4a390b4c889cede6be03f Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 6 May 2011 21:49:47 +0000 Subject: Merged revisions 317969 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r317969 | russell | 2011-05-06 16:49:01 -0500 (Fri, 06 May 2011) | 10 lines Use the right variable to print the time in a debug message. The original patch also increased some buffer sizes, but that was already done in this version. (closes issue #17034) Reported by: sysreq Patches: asterisk-issue-17034.patch uploaded by sysreq (license 1009) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@317970 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_meetme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 9b3ee979f..eaca85a88 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -3908,7 +3908,7 @@ static struct ast_conference *find_conf_realtime(struct ast_channel *chan, char ast_localtime(&now, &tm, NULL); ast_strftime(currenttime, sizeof(currenttime), DATE_FORMAT, &tm); - ast_debug(1, "Looking for conference %s that starts after %s\n", confno, eatime); + ast_debug(1, "Looking for conference %s that starts after %s\n", confno, currenttime); var = ast_load_realtime("meetme", "confno", confno, "starttime <= ", currenttime, "endtime >= ", -- cgit v1.2.3