summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-02-06 05:52:03 +0000
committerMark Spencer <markster@digium.com>2004-02-06 05:52:03 +0000
commit82e18770bc374d764c605872201f4d03cccfa17c (patch)
tree04409bb978e1a082869b0702e1fda69327e3225a /res
parent0dd66bd2e96052c243f5c2605033ecfb636d6d68 (diff)
Increase buffer size (1005)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2135 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res')
-rwxr-xr-xres/res_monitor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index d64b46d57..22e365d08 100755
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -204,7 +204,7 @@ int ast_monitor_stop( struct ast_channel *chan, int need_lock )
}
}
if (chan->monitor->joinfiles && strlen(chan->monitor->filename_base)) {
- char tmp[255];
+ char tmp[1024];
char *format = !strcasecmp(chan->monitor->format,"wav49") ? "WAV" : chan->monitor->format;
char *name = chan->monitor->filename_base;
int directory = strchr(name, '/') ? 1 : 0;