diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-02-14 15:49:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-02-14 15:49:48 +0000 |
commit | 54255463b27e650d0717a33ae0cedac66863eb93 (patch) | |
tree | 3cf919cf77da1e2c3689bfe98cb244f7f5bb61b2 /package/busybox/busybox-1.9.0-stty.patch | |
parent | 7c44a53354bfd602c4e88523a849b5507c66c0d0 (diff) | |
download | buildroot-novena-54255463b27e650d0717a33ae0cedac66863eb93.tar.gz buildroot-novena-54255463b27e650d0717a33ae0cedac66863eb93.zip |
busybox: bump version to 1.9.1
Diffstat (limited to 'package/busybox/busybox-1.9.0-stty.patch')
-rw-r--r-- | package/busybox/busybox-1.9.0-stty.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/package/busybox/busybox-1.9.0-stty.patch b/package/busybox/busybox-1.9.0-stty.patch deleted file mode 100644 index d9e7b2e95..000000000 --- a/package/busybox/busybox-1.9.0-stty.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- busybox-1.9.0/coreutils/stty.c Fri Dec 21 22:00:29 2007 -+++ busybox-1.9.0-stty/coreutils/stty.c Sat Feb 2 18:55:40 2008 -@@ -780,30 +780,14 @@ - - static const struct mode_info *find_mode(const char *name) - { -- int i = 0; -- const char *m = mode_name; -- -- while (*m) { -- if (strcmp(name, m) == 0) -- return &mode_info[i]; -- m += strlen(m) + 1; -- i++; -- } -- return NULL; -+ int i = index_in_strings(mode_name, name); -+ return i >= 0 ? &mode_info[i] : NULL; - } - - static const struct control_info *find_control(const char *name) - { -- int i = 0; -- const char *m = mode_name; -- -- while (*m) { -- if (strcmp(name, m) == 0) -- return &control_info[i]; -- m += strlen(m) + 1; -- i++; -- } -- return NULL; -+ int i = index_in_strings(control_name, name); -+ return i >= 0 ? &control_info[i] : NULL; - } - - enum { |