[asterisk-commits] may: branch 1.8 r414152 - /branches/1.8/addons/chan_ooh323.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon May 19 08:31:51 CDT 2014
Author: may
Date: Mon May 19 08:31:43 2014
New Revision: 414152
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=414152
Log:
chan_ooh323: fix h323_log full path name
* fix to use astlogdir option for h323_log file instead of hardcoded
ASTERISK-23754 #close
Reported by: Igor Goncharovsky
Patches:
ooh323_logger_patch.diff
Modified:
branches/1.8/addons/chan_ooh323.c
Modified: branches/1.8/addons/chan_ooh323.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/addons/chan_ooh323.c?view=diff&rev=414152&r1=414151&r2=414152
==============================================================================
--- branches/1.8/addons/chan_ooh323.c (original)
+++ branches/1.8/addons/chan_ooh323.c Mon May 19 08:31:43 2014
@@ -23,6 +23,7 @@
***/
#include "chan_ooh323.h"
+#include "asterisk/paths.h"
#include <math.h>
#define FORMAT_STRING_SIZE 512
@@ -30,7 +31,7 @@
/* Defaults */
#define DEFAULT_CONTEXT "default"
#define DEFAULT_H323ID "Asterisk PBX"
-#define DEFAULT_LOGFILE "/var/log/asterisk/h323_log"
+#define DEFAULT_LOGFILE "h323_log"
#define DEFAULT_H323ACCNT "ast_h323"
/* Flags */
@@ -2569,7 +2570,7 @@
}
/* Inintialize everything to default */
- strcpy(gLogFile, DEFAULT_LOGFILE);
+ snprintf(gLogFile, sizeof(gLogFile), "%s/%s", ast_config_AST_LOG_DIR, DEFAULT_LOGFILE);
gPort = 1720;
gIP[0] = '\0';
strcpy(gCallerID, DEFAULT_H323ID);
More information about the asterisk-commits
mailing list