diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-01 22:16:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-01 22:16:41 +0000 |
commit | 3776d592f117c8c5b0d2c37d265cb8ee2ac21695 (patch) | |
tree | 9cae15e988bc6b4eb1e2737db59bceaab58e0be7 /nss/nsswitch.c | |
parent | 7cbc698400bfe2a64f12b0cb703fda0fdecb5a59 (diff) | |
download | glibc-3776d592f117c8c5b0d2c37d265cb8ee2ac21695.tar.gz glibc-3776d592f117c8c5b0d2c37d265cb8ee2ac21695.tar.xz glibc-3776d592f117c8c5b0d2c37d265cb8ee2ac21695.zip |
Mon Jul 1 12:29:50 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* nss/Makefile (databases): Change host to hosts. * nss/host-lookup.c: Renamed to nss/hosts-lookup.c.
Diffstat (limited to 'nss/nsswitch.c')
-rw-r--r-- | nss/nsswitch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 9b6c4eb12f..c748eb1bef 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -249,8 +249,8 @@ nss_lookup_function (service_user *ni, const char *fct_name) + strlen (fct_name) + 1); char name[namlen]; struct link_map *map = ni->library->lib_handle; - Elf32_Addr loadbase; - const Elf32_Sym *ref = NULL; + ElfW(Addr) loadbase; + const ElfW(Sym) *ref = NULL; void get_sym (void) { struct link_map *scope[2] = { map, NULL }; @@ -397,7 +397,7 @@ nss_parse_service_list (const char *line) while (1) { service_user *new_service; - char *name; + const char *name; while (isspace (line[0])) ++line; |