1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-30 04:44:39 +02:00
openwrt-packages/libs/keyutils/patches/020-rindex.patch

18 lines
457 B
Diff
Raw Normal View History

--- 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);