diff options
author | Ned Ludd <solar@gentoo.org> | 2008-08-21 16:29:47 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2008-08-21 16:29:47 +0000 |
commit | 77cbb2822a020a40820aec3563503f1570c762e8 (patch) | |
tree | 607e61b8fcaaef8e8af7f0a3e9cf6a14f916f84f /sys-apps/busybox/files | |
parent | Version bump (diff) | |
download | historical-77cbb2822a020a40820aec3563503f1570c762e8.tar.gz historical-77cbb2822a020a40820aec3563503f1570c762e8.tar.bz2 historical-77cbb2822a020a40820aec3563503f1570c762e8.zip |
- version bump. Thanks Christoph Gysin bug #235363
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'sys-apps/busybox/files')
-rw-r--r-- | sys-apps/busybox/files/busybox-1.12.0-mdev-exec.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sys-apps/busybox/files/busybox-1.12.0-mdev-exec.patch b/sys-apps/busybox/files/busybox-1.12.0-mdev-exec.patch new file mode 100644 index 000000000000..78f022c0dc2c --- /dev/null +++ b/sys-apps/busybox/files/busybox-1.12.0-mdev-exec.patch @@ -0,0 +1,11 @@ +--- util-linux/mdev.c.orig 2008-08-21 14:18:38.000000000 +0200 ++++ util-linux/mdev.c 2008-08-21 14:24:18.000000000 +0200 +@@ -220,7 +220,7 @@ + break; + { + const char *s = "@$*"; +- const char *s2 = strchr(s, *val); ++ char *s2 = strchr(s, *val); + + if (!s2) + bb_error_msg_and_die("bad line %u", parser->lineno); |