multipath: rlookup WWIDs with spaces by alias
authorBenjamin Marzinski <bmarzins@redhat.com>
Sat, 12 Nov 2011 04:54:26 +0000 (22:54 -0600)
committerChristophe Varoqui <christophe.varoqui@opensvc.com>
Sat, 12 Nov 2011 10:12:14 +0000 (11:12 +0100)
If a WWID contained spaces, the rlookup code wasn't able to look it up
by its user_friendly_name, since the code was only reading the wwid till
the first space.  It now reads to the end of the line.

Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
libmultipath/alias.c

index 4159ec6..16ba220 100644 (file)
@@ -288,7 +288,7 @@ rlookup_binding(FILE *f, char **map_wwid, char *map_alias)
                curr_id = scan_devname(alias, NULL); /* TBD: Why this call? */
                if (curr_id >= id)
                        id = curr_id + 1;
-               wwid = strtok(NULL, " \t");
+               wwid = strtok(NULL, "");
                if (!wwid){
                        condlog(3,
                                "Ignoring malformed line %u in bindings file",