Fix missing option -s in libinstaller syslinux-4.03-pre3
authorArwin Vosselman <arwin-tteam@xs4all.nl>
Thu, 5 Aug 2010 20:17:30 +0000 (22:17 +0200)
committerH. Peter Anvin <hpa@linux.intel.com>
Thu, 9 Sep 2010 18:47:33 +0000 (11:47 -0700)
In 'libinstaller/syslxopt.c' on line 71 the "s" (undercast) is missing in:

   const char short_options[] = "t:fid:UuzS:H:rvho:OM:ma";

Adding the 's' there seems to solve our problem.

libinstaller/syslxopt.c

index 9b42c66..7ceb3ba 100644 (file)
@@ -68,7 +68,7 @@ const struct option long_options[] = {
     {0, 0, 0, 0}
 };
 
-const char short_options[] = "t:fid:UuzS:H:rvho:OM:ma";
+const char short_options[] = "t:fid:UuzsS:H:rvho:OM:ma";
 
 void __attribute__ ((noreturn)) usage(int rv, enum syslinux_mode mode)
 {