From: William King Date: Wed, 9 Sep 2015 15:59:26 +0000 (-0700) Subject: FS-8075 fix typo for dialplan app X-Git-Tag: v1.6.2~1^2~102 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a388131b2d9534ca47ce38f2a5bb8b3ca7de291;p=thirdparty%2Ffreeswitch.git FS-8075 fix typo for dialplan app --- diff --git a/src/mod/applications/mod_hiredis/mod_hiredis.c b/src/mod/applications/mod_hiredis/mod_hiredis.c index 1178ba4e89..8a6077390c 100644 --- a/src/mod/applications/mod_hiredis/mod_hiredis.c +++ b/src/mod/applications/mod_hiredis/mod_hiredis.c @@ -64,7 +64,7 @@ SWITCH_STANDARD_APP(raw_app) return; } - if ( hiredis_profile_execute_sync(profile, data, &response) != SWITCH_STATUS_SUCCESS) { + if ( hiredis_profile_execute_sync(profile, cmd, &response) != SWITCH_STATUS_SUCCESS) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "hiredis: profile[%s] error executing [%s] because [%s]\n", profile_name, cmd, response); }