[Asterisk-cvs] asterisk/channels chan_skinny.c,1.13,1.14

jeremy at lists.digium.com jeremy at lists.digium.com
Sun Sep 14 10:41:19 CDT 2003


Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv23503

Modified Files:
	chan_skinny.c 
Log Message:
don't die if skinny cannot figure out hostname


Index: chan_skinny.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_skinny.c,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- chan_skinny.c	14 Sep 2003 15:39:22 -0000	1.13
+++ chan_skinny.c	14 Sep 2003 15:42:27 -0000	1.14
@@ -2473,7 +2473,7 @@
 	
 	if (gethostname(ourhost, sizeof(ourhost))) {
 		ast_log(LOG_WARNING, "Unable to get hostname, Skinny disabled\n");
-		return 1;
+		return 0;
 	}
 	cfg = ast_load(config);
 




More information about the svn-commits mailing list