diff options
author | gm209912 <none@none> | 2007-09-19 10:20:24 -0700 |
---|---|---|
committer | gm209912 <none@none> | 2007-09-19 10:20:24 -0700 |
commit | df4705eab9c873eae60bada4f2138e6f22a76e11 (patch) | |
tree | 18bcec368473bd23d93e280fc891180ff1fd60a1 /usr/src/lib/libsip/common/sip_headers.c | |
parent | 06fc3f99dd009e8cb3632e91d9f502de89b96c38 (diff) | |
download | illumos-joyent-df4705eab9c873eae60bada4f2138e6f22a76e11.tar.gz |
PSARC 2007/447 SIP Contact API
6503334 SIP library should support "*" as a valid contact header value
6587481 add a SIP API to retrieve the the local contact information from sip_dialog structure
6589677 add a SIP API to create a request inside a dialog, without a Contact header
Diffstat (limited to 'usr/src/lib/libsip/common/sip_headers.c')
-rw-r--r-- | usr/src/lib/libsip/common/sip_headers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libsip/common/sip_headers.c b/usr/src/lib/libsip/common/sip_headers.c index f6d90bf5b5..d299ab4e79 100644 --- a/usr/src/lib/libsip/common/sip_headers.c +++ b/usr/src/lib/libsip/common/sip_headers.c @@ -728,7 +728,7 @@ _sip_get_header_functions(sip_header_function_t *sip_header_function_table, } header_name = sip_header->sip_hdr_current; if (sip_find_separator(sip_header, SIP_HCOLON, (char)NULL, - (char)NULL) != 0) { + (char)NULL, B_FALSE) != 0) { return (NULL); } len = sip_header->sip_hdr_current - header_name; |