mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-15 22:38:08 +00:00
Fix gethostname calls (bug #4198, with mods)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5600 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -248,7 +248,7 @@ static int restart_monitor(void);
|
||||
static int capability = AST_FORMAT_ULAW;
|
||||
static int nonCodecCapability = AST_RTP_DTMF;
|
||||
|
||||
static char ourhost[256];
|
||||
static char ourhost[MAXHOSTNAMELEN];
|
||||
static struct in_addr __ourip;
|
||||
static int ourport;
|
||||
|
||||
@@ -4096,7 +4096,7 @@ static int reload_config(void)
|
||||
struct hostent *hp;
|
||||
int format;
|
||||
|
||||
if (gethostname(ourhost, sizeof(ourhost))) {
|
||||
if (gethostname(ourhost, sizeof(ourhost)-1)) {
|
||||
ast_log(LOG_WARNING, "Unable to get hostname, MGCP disabled\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user