mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 16:21:01 +00:00
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 ........ Merged revisions 414152 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 414153 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@414154 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -23,6 +23,7 @@
|
|||||||
***/
|
***/
|
||||||
|
|
||||||
#include "chan_ooh323.h"
|
#include "chan_ooh323.h"
|
||||||
|
#include "asterisk/paths.h"
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
|
|
||||||
#define FORMAT_STRING_SIZE 512
|
#define FORMAT_STRING_SIZE 512
|
||||||
@@ -30,7 +31,7 @@
|
|||||||
/* Defaults */
|
/* Defaults */
|
||||||
#define DEFAULT_CONTEXT "default"
|
#define DEFAULT_CONTEXT "default"
|
||||||
#define DEFAULT_H323ID "Asterisk PBX"
|
#define DEFAULT_H323ID "Asterisk PBX"
|
||||||
#define DEFAULT_LOGFILE "/var/log/asterisk/h323_log"
|
#define DEFAULT_LOGFILE "h323_log"
|
||||||
#define DEFAULT_H323ACCNT "ast_h323"
|
#define DEFAULT_H323ACCNT "ast_h323"
|
||||||
|
|
||||||
/* Flags */
|
/* Flags */
|
||||||
@@ -2774,7 +2775,7 @@ int reload_config(int reload)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Inintialize everything to default */
|
/* Inintialize everything to default */
|
||||||
strcpy(gLogFile, DEFAULT_LOGFILE);
|
snprintf(gLogFile, sizeof(gLogFile), "%s/%s", ast_config_AST_LOG_DIR, DEFAULT_LOGFILE);
|
||||||
gPort = 1720;
|
gPort = 1720;
|
||||||
gIP[0] = '\0';
|
gIP[0] = '\0';
|
||||||
strcpy(gCallerID, DEFAULT_H323ID);
|
strcpy(gCallerID, DEFAULT_H323ID);
|
||||||
|
Reference in New Issue
Block a user