projects
/
profile
/
ivi
/
syslinux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f989f2
)
Fix missing option -s in libinstaller
syslinux-4.03-pre3
author
Arwin Vosselman
<arwin-tteam@xs4all.nl>
Thu, 5 Aug 2010 20:17:30 +0000
(22:17 +0200)
committer
H. 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
patch
|
blob
|
history
diff --git
a/libinstaller/syslxopt.c
b/libinstaller/syslxopt.c
index
9b42c66
..
7ceb3ba
100644
(file)
--- 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:Uuz
s
S:H:rvho:OM:ma";
void __attribute__ ((noreturn)) usage(int rv, enum syslinux_mode mode)
{