diff options
| author | Matt Fleming <matt.fleming@intel.com> | 2013-02-22 15:13:38 +0000 |
|---|---|---|
| committer | Matt Fleming <matt.fleming@intel.com> | 2013-02-23 11:52:17 +0000 |
| commit | 41c29c26d70fde563d7c255872bbadad87a39dfa (patch) | |
| tree | fb65b3d18965eecf58def8d531c4da6a18b1c7a9 /com32/modules/cmd.c | |
| parent | ab018ba3ce947f206bda2fc3c367a7eb4504b553 (diff) | |
| download | syslinux-5.02-pre3.tar.gz | |
com32: Add com32_cmdline() which returns argv[1..argc-1]syslinux-5.02-pre3
cmd.c32 needs an equivalent of __com32.cs_cmdline now that the COMBOOT
code is dead. Introducing com32_cmdline(), which returns a string
consisting of module arguments from argv[1] to argv[argc-1], separated
by spaces.
Reported-by: Gene Cumm <gene.cumm@gmail.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
Diffstat (limited to 'com32/modules/cmd.c')
| -rw-r--r-- | com32/modules/cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/modules/cmd.c b/com32/modules/cmd.c index 5d3f8918..233c7cac 100644 --- a/com32/modules/cmd.c +++ b/com32/modules/cmd.c @@ -21,6 +21,6 @@ int main(void) { - syslinux_run_command(__com32.cs_cmdline); + syslinux_run_command(com32_cmdline()); return -1; } |
