diff options
author | Gene Cumm <gene.cumm@gmail.com> | 2013-06-26 11:55:24 -0400 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2013-06-26 11:55:24 -0400 |
commit | bd464f0a54e847489190d9e859f6755832eb12fb (patch) | |
tree | 2df349494b5af4d34bbdaf6fa6a06cc3925d5224 /com32/menu/readconfig.c | |
parent | 4ff8fcac8e7b5046987dee15592ab510ab343aa8 (diff) | |
download | syslinux-bd464f0a54e847489190d9e859f6755832eb12fb.tar.gz syslinux-bd464f0a54e847489190d9e859f6755832eb12fb.tar.xz syslinux-bd464f0a54e847489190d9e859f6755832eb12fb.zip |
core & menu: fix IPAPPEND/SYSAPPEND conversion
Make both use the same functions.
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
Diffstat (limited to 'com32/menu/readconfig.c')
-rw-r--r-- | com32/menu/readconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/menu/readconfig.c b/com32/menu/readconfig.c index adec8a7d..b7814be2 100644 --- a/com32/menu/readconfig.c +++ b/com32/menu/readconfig.c @@ -1046,7 +1046,7 @@ do_include: m->allowedit = !!atoi(skipspace(p + 12)); } else if ((ep = looking_at(p, "ipappend")) || (ep = looking_at(p, "sysappend"))) { - uint32_t s = atoi(skipspace(ep)); + uint32_t s = strtoul(skipspace(ep), NULL, 0); if (ld.label) ld.ipappend = s; else |