[svn-commits] jpeeler: branch 1.4 r235940 - /branches/1.4/res/res_monitor.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Mon Dec 21 13:43:46 CST 2009
Author: jpeeler
Date: Mon Dec 21 13:43:41 2009
New Revision: 235940
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=235940
Log:
Change Monitor to not assume file to write to does not contain pathing.
227944 changed the fname_base argument to always append the configured monitor
path. This change was necessary to properly compare files for uniqueness.
If a full path is given though, nothing needs to be appended and that is
handled correctly now.
(closes issue #16377)
(closes issue #16376)
Reported by: bcnit
Patches:
res_monitor.c-issue16376-1.patch uploaded by dant (license 670)
Modified:
branches/1.4/res/res_monitor.c
Modified: branches/1.4/res/res_monitor.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/res/res_monitor.c?view=diff&rev=235940&r1=235939&r2=235940
==============================================================================
--- branches/1.4/res/res_monitor.c (original)
+++ branches/1.4/res/res_monitor.c Mon Dec 21 13:43:41 2009
@@ -169,8 +169,8 @@
directory ? "" : ast_config_AST_MONITOR_DIR, absolute, fname_base);
snprintf(monitor->write_filename, FILENAME_MAX, "%s%s%s-out",
directory ? "" : ast_config_AST_MONITOR_DIR, absolute, fname_base);
- snprintf(monitor->filename_base, FILENAME_MAX, "%s/%s",
- ast_config_AST_MONITOR_DIR, fname_base);
+ snprintf(monitor->filename_base, FILENAME_MAX, "%s%s%s",
+ directory ? "" : ast_config_AST_MONITOR_DIR, absolute, fname_base);
} else {
ast_mutex_lock(&monitorlock);
snprintf(monitor->read_filename, FILENAME_MAX, "%s/audio-in-%ld",
More information about the svn-commits
mailing list