From 6f438cf6d03e45d875b510559246573954e43218 Mon Sep 17 00:00:00 2001 From: Arwin Vosselman Date: Thu, 5 Aug 2010 22:17:30 +0200 Subject: Fix missing option -s in libinstaller 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libinstaller') 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) { -- cgit v1.2.1