From: Nathan Neulinger Date: Wed, 18 Jun 2014 22:11:19 +0000 (-0500) Subject: mod_skinny: profile digit timeout is integer not string X-Git-Tag: v1.5.13~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d886cc12fa88998c3bb416531b63b000763da57b;p=thirdparty%2Ffreeswitch.git mod_skinny: profile digit timeout is integer not string --- diff --git a/src/mod/endpoints/mod_skinny/mod_skinny.c b/src/mod/endpoints/mod_skinny/mod_skinny.c index 88905973d0..ab319b2d1b 100644 --- a/src/mod/endpoints/mod_skinny/mod_skinny.c +++ b/src/mod/endpoints/mod_skinny/mod_skinny.c @@ -161,7 +161,7 @@ switch_status_t skinny_profile_dump(const skinny_profile_t *profile, switch_stre stream->write_function(stream, "Patterns-Dialplan \t%s\n", profile->patterns_dialplan); stream->write_function(stream, "Patterns-Context \t%s\n", profile->patterns_context); stream->write_function(stream, "Keep-Alive \t%d\n", profile->keep_alive); - stream->write_function(stream, "Digit-Timeout \t%s\n", profile->digit_timeout); + stream->write_function(stream, "Digit-Timeout \t%d\n", profile->digit_timeout); stream->write_function(stream, "Date-Format \t%s\n", profile->date_format); stream->write_function(stream, "DBName \t%s\n", profile->dbname ? profile->dbname : switch_str_nil(profile->odbc_dsn)); stream->write_function(stream, "Debug \t%d\n", profile->debug);