diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-01-19 00:36:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-01-19 00:36:48 +0000 |
commit | 1e71bd5279854197a69e69c0eea44dd6827b3502 (patch) | |
tree | 46147224c81ac154c6862baed09e6cefd601ad6e /elf/rtld.c | |
parent | 2e42b53ca2b2432b95b02c709a8833f7735515fd (diff) | |
download | glibc-1e71bd5279854197a69e69c0eea44dd6827b3502.zip glibc-1e71bd5279854197a69e69c0eea44dd6827b3502.tar.gz glibc-1e71bd5279854197a69e69c0eea44dd6827b3502.tar.bz2 |
Update.
* elf/rtld.c (process_envvars): Call __strtoul_internal instead of
strtoul.
* elf/dl-minimal.c (strtol, __strtol_internal, strtoul): Removed.
(__sigjmp_save): Set __mask_was_saved to zero since we don't save
anything.
* dlfcn/eval.c (__strtol_internal): Define here.
(eval): Use __strtol_internal instead of strtol.
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1389,7 +1389,7 @@ process_envvars (enum mode *modep, int *lazyp) case 10: /* Mask for the important hardware capabilities. */ if (memcmp (&envline[3], "HWCAP_MASK", 10) == 0) - _dl_hwcap_mask = strtoul (&envline[14], NULL, 0); + _dl_hwcap_mask = __strtoul_internal (&envline[14], NULL, 0, 0); break; case 11: |