diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | nptl/Banner | 2 | ||||
-rw-r--r-- | sysdeps/generic/dl-sysdep.c | 10 |
3 files changed, 7 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog index a45f728fe5..dce7bae569 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,7 +2,7 @@ * elf/elf.h: Define AT_SYSINFO_EH_FRAME. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Handle - AT_SYSINFO_EH_FRAME. + AT_SYSINFO_EH_FRAME. Adjust string width. (_dl_show_auxv):Display AT_SYSINFO_EH_FRAME value. * sysdeps/generic/ldsodefs.h [NEED_DL_SYSINFO] (struct rtld_global): Add _dl_sysinfo_eh_frame field. diff --git a/nptl/Banner b/nptl/Banner index 28d8ef6ef1..6fa7293249 100644 --- a/nptl/Banner +++ b/nptl/Banner @@ -1 +1 @@ -NPTL 0.35 by Ulrich Drepper +NPTL 0.36 by Ulrich Drepper diff --git a/sysdeps/generic/dl-sysdep.c b/sysdeps/generic/dl-sysdep.c index 2c73b64f90..33e74dd60b 100644 --- a/sysdeps/generic/dl-sysdep.c +++ b/sysdeps/generic/dl-sysdep.c @@ -219,15 +219,15 @@ _dl_show_auxv (void) buf[63] = '\0'; /* The following code assumes that the AT_* values are encoded - starting from 0 with AT_NULL, 1 for AT_IGNORE, and all other values - close by (otherwise the array will be too large). In case we have - to support a platform where these requirements are not fulfilled - some alternative implementation has to be used. */ + starting from 0 with AT_NULL, 1 for AT_IGNORE, and all other values + close by (otherwise the array will be too large). In case we have + to support a platform where these requirements are not fulfilled + some alternative implementation has to be used. */ for (av = _dl_auxv; av->a_type != AT_NULL; ++av) { static const struct { - const char label[20]; + const char label[23]; enum { dec, hex, str } form; } auxvars[] = { |