mod_skinny: always return a response to version message, since that's what CCM does

This commit is contained in:
Nathan Neulinger 2014-06-18 11:44:20 -05:00
parent 4eabd3ab95
commit 840f7e69dd
1 changed files with 3 additions and 1 deletions

View File

@ -1741,7 +1741,9 @@ switch_status_t skinny_handle_version_request(listener_t *listener, skinny_messa
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING,
"Device %s:%d is requesting for firmware version, but none is set.\n",
listener->device_name, listener->device_instance);
return SWITCH_STATUS_SUCCESS;
/* CCM sends back an answer, but with all nulls */
return send_version(listener, "");
}
}