Re #1882 (misc): Incorrect use of pjsip_VIA_PARAM_SPEC on sip_parser.c. Thanks to George Joseph for the patch.

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@5275 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Riza Sulistyo 2016-04-11 03:22:30 +00:00
parent d84587ed8e
commit 167c2cdb24
1 changed files with 1 additions and 1 deletions

View File

@ -327,7 +327,7 @@ static pj_status_t init_parser()
status = pj_cis_dup(&pconst.pjsip_VIA_PARAM_SPEC_ESC, &pconst.pjsip_TOKEN_SPEC_ESC);
PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);
pj_cis_add_str(&pconst.pjsip_VIA_PARAM_SPEC, ":");
pj_cis_add_str(&pconst.pjsip_VIA_PARAM_SPEC_ESC, ":");
status = pj_cis_dup(&pconst.pjsip_HOST_SPEC, &pconst.pjsip_ALNUM_SPEC);
PJ_ASSERT_RETURN(status == PJ_SUCCESS, status);