diff options
author | Geert Stappers <stappers@stappers.nl> | 2016-06-07 06:19:36 -0400 |
---|---|---|
committer | Gene Cumm <gene.cumm@gmail.com> | 2016-06-07 06:19:48 -0400 |
commit | b53066dc3ff00a91dc7791b7fd82beeba3831ef1 (patch) | |
tree | 351a76c681acaabca54758fd44d90d440ac8a600 /com32 | |
parent | 1a74985b2a404639b08882c57f3147229605dfd5 (diff) | |
download | syslinux-b53066dc3ff00a91dc7791b7fd82beeba3831ef1.tar.gz syslinux-b53066dc3ff00a91dc7791b7fd82beeba3831ef1.tar.xz syslinux-b53066dc3ff00a91dc7791b7fd82beeba3831ef1.zip |
removing double l from auxilliary
This patch changes only strings, no program code.
Reported-by: Ady <ady-sf@hotmail.com>
Signed-off-by: Gene Cumm <gene.cumm@gmail.com>
Diffstat (limited to 'com32')
-rw-r--r-- | com32/elflink/ldlinux/adv.c | 2 | ||||
-rw-r--r-- | com32/elflink/ldlinux/getadv.c | 2 | ||||
-rw-r--r-- | com32/elflink/ldlinux/setadv.c | 2 | ||||
-rw-r--r-- | com32/include/sys/elfcommon.h | 2 | ||||
-rw-r--r-- | com32/mboot/mboot.c | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/com32/elflink/ldlinux/adv.c b/com32/elflink/ldlinux/adv.c index 0cbbe274..8ce73c33 100644 --- a/com32/elflink/ldlinux/adv.c +++ b/com32/elflink/ldlinux/adv.c @@ -28,7 +28,7 @@ /* * syslinux/adv.c * - * Access the syslinux auxilliary data vector + * Access the syslinux auxiliary data vector */ #include <syslinux/adv.h> diff --git a/com32/elflink/ldlinux/getadv.c b/com32/elflink/ldlinux/getadv.c index 1c27f1b8..9baeba14 100644 --- a/com32/elflink/ldlinux/getadv.c +++ b/com32/elflink/ldlinux/getadv.c @@ -28,7 +28,7 @@ /* * syslinux/getadv.c * - * Get a data item from the auxilliary data vector. Returns a pointer + * Get a data item from the auxiliary data vector. Returns a pointer * and sets *size on success; NULL on failure. */ diff --git a/com32/elflink/ldlinux/setadv.c b/com32/elflink/ldlinux/setadv.c index 2e386213..ba3be722 100644 --- a/com32/elflink/ldlinux/setadv.c +++ b/com32/elflink/ldlinux/setadv.c @@ -29,7 +29,7 @@ /* * syslinux/setadv.c * - * (Over)write a data item in the auxilliary data vector. To + * (Over)write a data item in the auxiliary data vector. To * delete an item, set its length to zero. * * Return 0 on success, -1 on error, and set errno. diff --git a/com32/include/sys/elfcommon.h b/com32/include/sys/elfcommon.h index 99b5ad10..29f20943 100644 --- a/com32/include/sys/elfcommon.h +++ b/com32/include/sys/elfcommon.h @@ -162,7 +162,7 @@ #define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1) #define DT_EXTRANUM 3 -/* Auxilliary table entries */ +/* Auxiliary table entries */ #define AT_NULL 0 /* end of vector */ #define AT_IGNORE 1 /* entry should be ignored */ #define AT_EXECFD 2 /* file descriptor of program */ diff --git a/com32/mboot/mboot.c b/com32/mboot/mboot.c index 10e6701c..4e6b4e1d 100644 --- a/com32/mboot/mboot.c +++ b/com32/mboot/mboot.c @@ -223,13 +223,13 @@ int main(int argc, char *argv[]) mbinfo.flags |= MB_INFO_CMDLINE; } - /* Map auxilliary images */ + /* Map auxiliary images */ if (nmodules > 1) { if (map_modules(modules + 1, nmodules - 1)) return 1; } - /* Add auxilliary information */ + /* Add auxiliary information */ mboot_make_memmap(); mboot_apm(); mboot_syslinux_info(); |