mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-10 11:58:08 +00:00
Fix coverity UNUSED_VALUE findings in core support level files
Most of these were just saving returned values without using them and in some cases the variable being saved to could be removed as well. (issue ASTERISK-19672) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@368738 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1355,10 +1355,10 @@ static void __ast_udptl_reload(int reload)
|
||||
ast_log(LOG_WARNING, "Disabling UDPTL checksums is not supported on this operating system!\n");
|
||||
#endif
|
||||
}
|
||||
if ((s = ast_variable_retrieve(cfg, "general", "T38FaxUdpEC"))) {
|
||||
if (ast_variable_retrieve(cfg, "general", "T38FaxUdpEC")) {
|
||||
ast_log(LOG_WARNING, "T38FaxUdpEC in udptl.conf is no longer supported; use the t38pt_udptl configuration option in sip.conf instead.\n");
|
||||
}
|
||||
if ((s = ast_variable_retrieve(cfg, "general", "T38FaxMaxDatagram"))) {
|
||||
if (ast_variable_retrieve(cfg, "general", "T38FaxMaxDatagram")) {
|
||||
ast_log(LOG_WARNING, "T38FaxMaxDatagram in udptl.conf is no longer supported; value is now supplied by T.38 applications.\n");
|
||||
}
|
||||
if ((s = ast_variable_retrieve(cfg, "general", "UDPTLFECEntries"))) {
|
||||
|
||||
Reference in New Issue
Block a user