aboutsummaryrefslogtreecommitdiffstats
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-06 05:52:03 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-06 05:52:03 +0000
commitc482188fb81fe9224dcfa08df7f07d89ca4cde4c (patch)
tree04409bb978e1a082869b0702e1fda69327e3225a /res/res_monitor.c
parent266746c628ac9e8b2db20924b36581c5bfc041f6 (diff)
Increase buffer size (1005)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2135 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/res_monitor.c')
-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;