aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'patches/busybox/1.30.1/1.18.1-openvt.diff')
-rw-r--r--patches/busybox/1.30.1/1.18.1-openvt.diff19
1 files changed, 0 insertions, 19 deletions
diff --git a/patches/busybox/1.30.1/1.18.1-openvt.diff b/patches/busybox/1.30.1/1.18.1-openvt.diff
deleted file mode 100644
index b8a9f8ac..00000000
--- a/patches/busybox/1.30.1/1.18.1-openvt.diff
+++ /dev/null
@@ -1,19 +0,0 @@
-Based on:
-
-> Allow a slightly wider range of valid vt numbers. Forward-ported from Gentoo
-> Busybox 1.1.3.
-
-> The previous spin of this patch on 1.1.3 had a 'wait(NULL);' right before
-> return EXIT_SUCCESS. I don't think it's needed anymore, so I left it out.
-
---- a/console-tools/openvt.c 2010-11-22 22:24:58.000000000 +0200
-+++ b/console-tools/openvt.c 2010-11-29 15:32:18.000000000 +0200
-@@ -124,7 +124,7 @@ int openvt_main(int argc UNUSED_PARAM, c
-
- if (flags & OPT_c) {
- /* Check for illegal vt number: < 1 or > 63 */
-- vtno = xatou_range(str_c, 1, 63);
-+ vtno = xatou_range(str_c, 0, 63);
- } else {
- vtno = find_free_vtno();
- }