A leftover check was left by recent patch series about server
addr:svc_port propagation: a check on (msg) being set was performed
in srv_update_addr_port(), but msg is always set, so the check is not
needed and confuses coverity (See GH #2399)
* s->svc_port is only relevant under inet context
*/
if ((s->addr.ss_family != AF_INET) && (s->addr.ss_family != AF_INET6)) {
- if (msg)
- chunk_printf(msg, "Update for the current server address family is only supported through configuration file.");
+ chunk_printf(msg, "Update for the current server address family is only supported through configuration file.");
goto out;
}