mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 00:04:53 +00:00
Better fallback method for autosystemname.
Issue 9713, patch by Juggie with minor mods by me. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@64012 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -2529,8 +2529,10 @@ static void ast_readconfig(void)
|
||||
if (!gethostname(hostname, sizeof(hostname) - 1))
|
||||
ast_copy_string(ast_config_AST_SYSTEM_NAME, hostname, sizeof(ast_config_AST_SYSTEM_NAME));
|
||||
else {
|
||||
ast_log(LOG_ERROR, "Cannot obtain hostname for this system. Using 'localhost' instead.\n");
|
||||
ast_copy_string(ast_config_AST_SYSTEM_NAME, "localhost", sizeof(ast_config_AST_SYSTEM_NAME));
|
||||
if (!ast_strlen_zero(ast_config_AST_SYSTEM_NAME)){
|
||||
ast_copy_string(ast_config_AST_SYSTEM_NAME, "localhost", sizeof(ast_config_AST_SYSTEM_NAME));
|
||||
}
|
||||
ast_log(LOG_ERROR, "Cannot obtain hostname for this system. Using '%s' instead.\n", ast_config_AST_SYSTEM_NAME);
|
||||
}
|
||||
}
|
||||
} else if (!strcasecmp(v->name, "languageprefix")) {
|
||||
|
Reference in New Issue
Block a user