diff options
| author | hpa <hpa> | 2005-08-21 06:18:54 +0000 |
|---|---|---|
| committer | hpa <hpa> | 2005-08-21 06:18:54 +0000 |
| commit | 2ea32f4e7f26c44fcfcddcb26ae529b23babf7e3 (patch) | |
| tree | 0157970f0ad6b097765f3e5f2c74e8477c234461 /cmdline.inc | |
| parent | 87575da8034373b0bf9ea147329b6d24dc5a825a (diff) | |
| download | syslinux-2ea32f4e7f26c44fcfcddcb26ae529b23babf7e3.tar.gz | |
Correct the code related to the run kernel image API function.
Diffstat (limited to 'cmdline.inc')
| -rw-r--r-- | cmdline.inc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/cmdline.inc b/cmdline.inc index 9b636e38..d1cb2610 100644 --- a/cmdline.inc +++ b/cmdline.inc @@ -23,17 +23,14 @@ ; Assumes DS == CS make_plain_cmdline: push es - ; ui.inc has already copied the actual command line + ; ui.inc has already copied any APPEND options mov ax,real_mode_seg mov es,ax mov si,[CmdOptPtr] mov di,[CmdLinePtr] -.loop: lodsb - stosb - and al,al - jnz .loop + call strcpy dec di mov [CmdLinePtr],di |
