1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* nss/nsswitch.c (__nss_lookup): Adjust comment.
This commit is contained in:
Ulrich Drepper
1998-03-31 08:36:05 +00:00
parent 0491011bde
commit 4317f9e137
7 changed files with 138 additions and 26 deletions

View File

@ -331,6 +331,10 @@ _dl_init_paths (const char *llp)
variable. */
struct link_map *l;
/* Names of important hardware capabilities. */
char **hwcap_names;
size_t nhwcap_names;
/* Number of elements in the library path. */
size_t nllp;
@ -347,6 +351,10 @@ _dl_init_paths (const char *llp)
else
nllp = 0;
/* Get the capabilities. */
hwcap_names = _dl_important_hwcaps (&nhwcap_names,
_dl_platform, _dl_platformlen);
l = _dl_loaded;
if (l != NULL)
{