useragent = get_header(req, "User-Agent");
if(useragent && strcasecmp(useragent, p->useragent)) {
strncpy(p->useragent, useragent, sizeof(p->useragent) - 1);
- if (option_verbose > 2) {
+ if (option_verbose > 3) {
ast_verbose(VERBOSE_PREFIX_3 "Saved useragent \"%s\" for peer %s\n",p->useragent,p->name);
}
}
return -1;
}
if (res && strcmp(repl, ".")) {
- ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
+ if (option_verbose > 3)
+ ast_verbose( VERBOSE_PREFIX_3 "parse_srv: SRV mapped to host %s, port %d\n", repl, ntohs(srv->portnum));
if (host) {
strncpy(host, repl, hostlen - 1);
host[hostlen-1] = '\0';