Displaying 1 result from an estimated 1 matches for "3d6aa27".
2018 Nov 02
1
I heard the patch window was open? Two small patches
...incomputing.com>
Date: Sun Mar 5 21:07:48 2017 -0800
Fix PATH parsing to match the documentation at
http://www.syslinux.org/wiki/index.php?title=Config#PATH
that the list is space-separated
diff --git a/com32/elflink/ldlinux/readconfig.c
b/com32/elflink/ldlinux/readconfig.c
index 3d6aa27..c6b86d4 100644
--- a/com32/elflink/ldlinux/readconfig.c
+++ b/com32/elflink/ldlinux/readconfig.c
@@ -786,7 +786,7 @@ static int parse_path(char *p)
char *c = p;
/* Find the next directory */
- while (*c && *c != ':')
+ while (*c && !my_isspace(*...