summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArwin Vosselman <arwin-tteam@xs4all.nl>2010-08-05 22:17:30 +0200
committerH. Peter Anvin <hpa@linux.intel.com>2010-09-09 11:47:33 -0700
commit6f438cf6d03e45d875b510559246573954e43218 (patch)
treed999bba6bd8113ba78502af532c5f4aff0319778
parent4f989f2478227c426401b27607f3f1bab7476c1c (diff)
downloadsyslinux-6f438cf6d03e45d875b510559246573954e43218.tar.gz
Fix missing option -s in libinstallersyslinux-4.03-pre3
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.
-rw-r--r--libinstaller/syslxopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libinstaller/syslxopt.c b/libinstaller/syslxopt.c
index 9b42c66f..7ceb3ba2 100644
--- a/libinstaller/syslxopt.c
+++ b/libinstaller/syslxopt.c
@@ -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)
{