[svn-commits] mmichelson: branch group/dns_naptr r433362 - /team/group/dns_naptr/tests/

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Mar 24 17:05:35 CDT 2015


Author: mmichelson
Date: Tue Mar 24 17:05:33 2015
New Revision: 433362

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=433362
Log:
Fix incorrect size of a regexp.


Modified:
    team/group/dns_naptr/tests/test_dns_naptr.c

Modified: team/group/dns_naptr/tests/test_dns_naptr.c
URL: http://svnview.digium.com/svn/asterisk/team/group/dns_naptr/tests/test_dns_naptr.c?view=diff&rev=433362&r1=433361&r2=433362
==============================================================================
--- team/group/dns_naptr/tests/test_dns_naptr.c (original)
+++ team/group/dns_naptr/tests/test_dns_naptr.c Tue Mar 24 17:05:33 2015
@@ -488,7 +488,7 @@
 		/* Invalid regex flag */
 		{ 100, 100, {1, "A"}, {4, "BLAH"}, {16, "!.*!horse.mane!o"}, ""},
 		/* Invalid backreference */
-		{ 100, 100, {1, "A"}, {4, "BLAH"}, {14, "!.*!horse.\\0!"}, ""},
+		{ 100, 100, {1, "A"}, {4, "BLAH"}, {13, "!.*!horse.\\0!"}, ""},
 		/* Invalid regex */
 		{ 100, 100, {1, "A"}, {4, "BLAH"}, {16, "!(.*!horse.mane!"}, ""},
 	};




More information about the svn-commits mailing list