From: Denis Vlasenko Date: Tue, 31 Mar 2009 19:47:34 +0000 (-0000) Subject: volumeid: fix bug 249 "findfs finds the wrong partition" X-Git-Tag: 1_14_0~140 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9983d806d910ef1e01bc1868ded40720cee3f092;p=oweals%2Fbusybox.git volumeid: fix bug 249 "findfs finds the wrong partition" --- diff --git a/util-linux/volume_id/get_devname.c b/util-linux/volume_id/get_devname.c index 45a4aeea9..ac69f78c4 100644 --- a/util-linux/volume_id/get_devname.c +++ b/util-linux/volume_id/get_devname.c @@ -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;