ASR_BASE

Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/package/libs/keyutils/patches/020-rindex.patch b/package/libs/keyutils/patches/020-rindex.patch
new file mode 100644
index 0000000..5137518
--- /dev/null
+++ b/package/libs/keyutils/patches/020-rindex.patch
@@ -0,0 +1,17 @@
+--- a/key.dns_resolver.c
++++ b/key.dns_resolver.c
+@@ -717,12 +717,12 @@ int main(int argc, char *argv[])
+ 	keyend = buf + ktlen + 1;
+ 
+ 	/* the actual key description follows the last semicolon */
+-	keyend = rindex(keyend, ';');
++	keyend = strrchr(keyend, ';');
+ 	if (!keyend)
+ 		error("Invalid key description: %s", buf);
+ 	keyend++;
+ 
+-	name = index(keyend, ':');
++	name = strchr(keyend, ':');
+ 	if (!name)
+ 		dns_query_a_or_aaaa(keyend, callout_info);
+