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

Modified Files:
        chan_iax2.c 
Log Message:
fix compile error (%d changed to %n)


Index: chan_iax2.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_iax2.c,v
retrieving revision 1.355
retrieving revision 1.356
diff -u -d -r1.355 -r1.356
--- chan_iax2.c 14 Oct 2005 05:19:34 -0000      1.355
+++ chan_iax2.c 14 Oct 2005 05:29:41 -0000      1.356
@@ -8189,7 +8189,7 @@
                        } else if (!strcasecmp(v->name, "qualifyfreqnotok")) {
                                if (sscanf(v->value, "%d", 
&peer->pokefreqnotok) != 1) {
                                        ast_log(LOG_WARNING, "Qualification 
testing frequency of peer '%s' when NOT OK should be a number of milliseconds 
at line %d of iax.conf\n", peer->name, v->lineno);
-                               } else ast_log(LOG_WARNING, "Set 
peer->pokefreqnotok to %n\n", peer->pokefreqnotok);
+                               } else ast_log(LOG_WARNING, "Set 
peer->pokefreqnotok to %d\n", peer->pokefreqnotok);
                        } else if (!strcasecmp(v->name, "timezone")) {
                                ast_copy_string(peer->zonetag, v->value, 
sizeof(peer->zonetag));
                        }/* else if (strcasecmp(v->name,"type")) */

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to