Skip to content
Snippets Groups Projects
Commit 9863bb98 authored by Olle Johansson's avatar Olle Johansson
Browse files

Separate private options so we don't request bug report on those...

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@35988 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 8ee441b6
Branches
Tags
No related merge requests found
...@@ -1614,8 +1614,12 @@ static unsigned int parse_sip_options(struct sip_pvt *pvt, const char *supported ...@@ -1614,8 +1614,12 @@ static unsigned int parse_sip_options(struct sip_pvt *pvt, const char *supported
break; break;
} }
} }
if (!found && option_debug > 2 && sipdebug) if (!found && option_debug > 2 && sipdebug) {
ast_log(LOG_DEBUG, "Found no match for SIP option: %s (Please file bug report!)\n", next); if (!strncasecmp(next, "x-", 2))
ast_log(LOG_DEBUG, "Found private SIP option, not supported: %s\n", next);
else
ast_log(LOG_DEBUG, "Found no match for SIP option: %s (Please file bug report!)\n", next);
}
} }
   
if (pvt) if (pvt)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment