[Asterisk-cvs] asterisk/channels chan_h323.c,1.12,1.13

jeremy at lists.digium.com jeremy at lists.digium.com
Thu Dec 18 12:33:02 CST 2003


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

Modified Files:
	chan_h323.c 
Log Message:
don't complain on type=h323 itself :)


Index: chan_h323.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_h323.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- chan_h323.c	10 Dec 2003 23:34:47 -0000	1.12
+++ chan_h323.c	18 Dec 2003 18:24:36 -0000	1.13
@@ -212,7 +212,9 @@
 			} else if (!strcasecmp(v->name, "secret")) {
 				strncpy(alias->secret,  v->value, sizeof(alias->secret)-1);
 			} else {
+				if (strcasecmp(v->name, "h323")) { 	
 					ast_log(LOG_WARNING, "Keyword %s does not make sense in type=h323\n", v->value);
+				}
 			}
 			v = v->next;
 		}




More information about the svn-commits mailing list