[asterisk-commits] pcadach: branch pcadach/chan_h323-live r43098 - /team/pcadach/chan_h323-live/...

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sun Sep 17 12:45:52 MST 2006


Author: pcadach
Date: Sun Sep 17 14:45:52 2006
New Revision: 43098

URL: http://svn.digium.com/view/asterisk?rev=43098&view=rev
Log:
Small fix

Modified:
    team/pcadach/chan_h323-live/channels/chan_h323.c

Modified: team/pcadach/chan_h323-live/channels/chan_h323.c
URL: http://svn.digium.com/view/asterisk/team/pcadach/chan_h323-live/channels/chan_h323.c?rev=43098&r1=43097&r2=43098&view=diff
==============================================================================
--- team/pcadach/chan_h323-live/channels/chan_h323.c (original)
+++ team/pcadach/chan_h323-live/channels/chan_h323.c Sun Sep 17 14:45:52 2006
@@ -1301,7 +1301,7 @@
 	} else if (!strcasecmp(v->name, "progress_setup")) {
 		tmp = atoi(v->value);
 		if ((tmp != 0) && (tmp != 1) && (tmp != 3) && (tmp != 8)) {
-			ast_log(LOG_WARNING, "Invalid value %d for %s at line %d, assuming 0\n", v->value, v->name, v->lineno);
+			ast_log(LOG_WARNING, "Invalid value %s for %s at line %d, assuming 0\n", v->value, v->name, v->lineno);
 			tmp = 0;
 		}
 		options->progress_setup = tmp;



More information about the asterisk-commits mailing list