From 765b6859467587798b2f96ad85665c13fd8f03ed Mon Sep 17 00:00:00 2001 From: Benjamin Marzinski Date: Fri, 26 Sep 2008 23:28:36 +0000 Subject: Since libaio is now in /lib, not /usr/lib, multipath no longer needs to statically link against it. Fixed an error with binding file and WWIDs that include spaces. Cleaned up the messages from the directio checker function. Fixed the udev rules. Fixed a regression in multipath.conf parsing Fixed 457530, 457589 --- binding_error.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 binding_error.patch (limited to 'binding_error.patch') diff --git a/binding_error.patch b/binding_error.patch new file mode 100644 index 0000000..abd9811 --- /dev/null +++ b/binding_error.patch @@ -0,0 +1,13 @@ +Index: multipath-tools/libmultipath/alias.c +=================================================================== +--- multipath-tools.orig/libmultipath/alias.c ++++ multipath-tools/libmultipath/alias.c +@@ -243,7 +243,7 @@ lookup_binding(FILE *f, char *map_wwid, + curr_id = scan_devname(alias); + 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", -- cgit