From 6798462428c2ab0afe7a882b87aad9e4a700d2cb Mon Sep 17 00:00:00 2001 From: mmichelson Date: Fri, 9 Jul 2010 14:27:07 +0000 Subject: 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: http://svn.digium.com/svn/asterisk/trunk@274984 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/sip/reqresp_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'channels/sip') 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; -- cgit v1.2.3