diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-15 13:41:59 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-04-15 13:41:59 +0000 |
commit | edfe9feee71856e423ef15538761d8ccae41ee32 (patch) | |
tree | c3397ddffec354c8aa6e7d7f18d67fbdff603b96 /package/busybox/busybox-1.13.3-volumeid.patch | |
parent | ef8fd64dcba7684c6cbedb49751d9b94daafef75 (diff) |
busybox: bump 1.13.x version
Diffstat (limited to 'package/busybox/busybox-1.13.3-volumeid.patch')
-rw-r--r-- | package/busybox/busybox-1.13.3-volumeid.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/package/busybox/busybox-1.13.3-volumeid.patch b/package/busybox/busybox-1.13.3-volumeid.patch deleted file mode 100644 index ff4c0258e..000000000 --- a/package/busybox/busybox-1.13.3-volumeid.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -urpN busybox-1.13.3/util-linux/volume_id/get_devname.c busybox-1.13.3-volumeid/util-linux/volume_id/get_devname.c ---- busybox-1.13.3/util-linux/volume_id/get_devname.c 2009-02-26 12:47:41.000000000 +0100 -+++ busybox-1.13.3-volumeid/util-linux/volume_id/get_devname.c 2009-03-31 21:46:37.000000000 +0200 -@@ -223,13 +223,11 @@ void display_uuid_cache(void) - char *get_devname_from_label(const char *spec) - { - struct uuidCache_s *uc; -- int spec_len = strlen(spec); - - uuidcache_init(); - uc = uuidCache; - while (uc) { --// FIXME: empty label ("LABEL=") matches anything??! -- if (uc->label[0] && strncmp(spec, uc->label, spec_len) == 0) { -+ if (uc->label[0] && strcmp(spec, uc->label) == 0) { - return xstrdup(uc->device); - } - uc = uc->next; |