From 19c1ac82a488094807ff03f9ca8ee95d906db86e Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 24 Jun 2005 02:56:15 +0000 Subject: [PATCH] actually get the host's name for the code that needs it (bug #4569) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5998 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_skinny.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c index 6c6d464544..7f96e8fcfa 100755 --- a/channels/chan_skinny.c +++ b/channels/chan_skinny.c @@ -3113,13 +3113,10 @@ static int reload_config(void) struct skinny_device *d; int oldport = ntohs(bindaddr.sin_port); -#if 0 - hp = ast_gethostbyname(ourhost, &ahp); - if (!hp) { + if (gethostname(ourhost, sizeof(ourhost))) { ast_log(LOG_WARNING, "Unable to get hostname, Skinny disabled\n"); return 0; } -#endif cfg = ast_config_load(config); /* We *must* have a config file otherwise stop immediately */