From 3c85ab716f46f4610db2638b34bafe5e6aaff8cf Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Wed, 27 May 2009 20:14:09 +0200 Subject: busybox: bump 1.14.x version Signed-off-by: Peter Korsgaard --- package/busybox/busybox-1.14.0-sysctl.patch | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 package/busybox/busybox-1.14.0-sysctl.patch (limited to 'package/busybox/busybox-1.14.0-sysctl.patch') diff --git a/package/busybox/busybox-1.14.0-sysctl.patch b/package/busybox/busybox-1.14.0-sysctl.patch deleted file mode 100644 index 67383864f..000000000 --- a/package/busybox/busybox-1.14.0-sysctl.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- busybox-1.14.0/procps/sysctl.c Tue Apr 14 01:43:09 2009 -+++ busybox-1.14.0-sysctl/procps/sysctl.c Sun May 10 23:40:52 2009 -@@ -214,11 +214,11 @@ - // (but _whitespace_ from ends should be trimmed first (and we do it right)) - //TODO: "var==1" is mishandled (must use "=1" as a value, but uses "1") - while (config_read(parser, token, 2, 2, "# \t=", PARSE_NORMAL)) { -+ char *tp; - sysctl_dots_to_slashes(token[0]); -- /* Save ~4 bytes by using parser internals */ -- /* parser->line is big enough for sprintf */ -- sprintf(parser->line, "%s=%s", token[0], token[1]); -- sysctl_act_recursive(parser->line); -+ tp = xasprintf("%s=%s", token[0], token[1]); -+ sysctl_act_recursive(tp); -+ free(tp); - } - if (ENABLE_FEATURE_CLEAN_UP) - config_close(parser); -- cgit v1.2.3