mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-28 20:23:35 +08:00
Fix a const warning in ldconfig.
This commit is contained in:
parent
265bb1ce94
commit
3f7dcb2b0f
@ -1,3 +1,7 @@
|
||||
2010-05-07 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* elf/ldconfig.c (main): Add a const.
|
||||
|
||||
2010-05-06 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* nss/getent.c (idn_flags): Default to AI_IDN|AI_CANONIDN.
|
||||
|
@ -1357,7 +1357,7 @@ main (int argc, char **argv)
|
||||
add_system_dir (LIBDIR);
|
||||
}
|
||||
|
||||
char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE;
|
||||
const char *aux_cache_file = _PATH_LDCONFIG_AUX_CACHE;
|
||||
if (opt_chroot)
|
||||
{
|
||||
aux_cache_file = chroot_canon (opt_chroot, aux_cache_file);
|
||||
|
Loading…
Reference in New Issue
Block a user