summaryrefslogtreecommitdiff
path: root/channels/sip
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2010-07-09 14:27:07 +0000
committerMark Michelson <mmichelson@digium.com>2010-07-09 14:27:07 +0000
commit0cc20f86ba668a4018bbaa4139f75fb1f021c1c3 (patch)
tree758029da26e4d07c1914faf23efc027481a04031 /channels/sip
parent53071af180f33043fdfc32e7e689b2f095e37dbc (diff)
Fix sip_uri_parse test comparison.
Part of the change with the IPv6 changes is to treat a host:port as a single 'domain' entity. This test was not updated to have the correct expectation after calling parse_uri(). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@274984 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/sip')
-rw-r--r--channels/sip/reqresp_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/sip/reqresp_parser.c b/channels/sip/reqresp_parser.c
index 59cefaa46..eb5c1803e 100644
--- a/channels/sip/reqresp_parser.c
+++ b/channels/sip/reqresp_parser.c
@@ -593,7 +593,7 @@ AST_TEST_DEFINE(sip_parse_uri_test)
if (parse_uri(uri9, "sip:,sips:", &name, &pass, &domain, &transport) ||
!ast_strlen_zero(name) ||
!ast_strlen_zero(pass) ||
- strcmp(domain, "host") ||
+ strcmp(domain, "host:port") ||
strcmp(transport, "tcp")) {
ast_test_status_update(test, "Test 9: domain only uri failed \n");
res = AST_TEST_FAIL;
@@ -606,7 +606,7 @@ AST_TEST_DEFINE(sip_parse_uri_test)
if (!parse_uri(uri10, "sip:,sips:", &name, &pass, &domain, &transport) ||
!ast_strlen_zero(name) ||
!ast_strlen_zero(pass) ||
- strcmp(domain, "host") ||
+ strcmp(domain, "host:port") ||
strcmp(transport, "tcp")) {
ast_test_status_update(test, "Test 10: missing \"sip:sips:\" scheme failed\n");
res = AST_TEST_FAIL;