mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-03 00:10:10 +00:00
Update.
2001-08-14 Jakub Jelinek <jakub@redhat.com> * resolv/nss_dns/dns-host.c (RESOLVSORT): Define. (addrsort): New function. * resolv/gethnamaddr.c (RESOLVSORT): Define. 2001-08-14 Jakub Jelinek <jakub@redhat.com> * string/strsignal.c (free_mem): Remove. 2001-08-14 Andreas Jaeger <aj@suse.de> * inet/inet_ntoa.c (free_mem): Remove, it's not used anymore. Closes PR libc/2477, reported by Dylan Alex Simon <dylan@dylex.caltech.edu>. 2001-08-14 Ulrich Drepper <drepper@redhat.com> * locale/Makefile (aux): Add xlocale. * locale/xlocale.c: New file. * include/locale.c (_nl_C_locobj): Declare. * iconv/gconv_charset.h: Use __tolower_l, __isdigit_l, __isspace_l with _nl_C_locobj instead of tolower, isdigit, isspace. * iconv/gconv_conf.c: Likewise. * iconv/gconv_int.h: Likewise. * iconv/gconv_open.c: Likewise. * locale/newlocale.c: Minor cleanups.
This commit is contained in:
parent
ecad39f050
commit
5db915715f
29
ChangeLog
29
ChangeLog
@ -1,3 +1,32 @@
|
|||||||
|
2001-08-14 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* resolv/nss_dns/dns-host.c (RESOLVSORT): Define.
|
||||||
|
(addrsort): New function.
|
||||||
|
* resolv/gethnamaddr.c (RESOLVSORT): Define.
|
||||||
|
|
||||||
|
2001-08-14 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* string/strsignal.c (free_mem): Remove.
|
||||||
|
|
||||||
|
2001-08-14 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
|
* inet/inet_ntoa.c (free_mem): Remove, it's not used anymore.
|
||||||
|
Closes PR libc/2477, reported by Dylan Alex Simon
|
||||||
|
<dylan@dylex.caltech.edu>.
|
||||||
|
|
||||||
|
2001-08-14 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* locale/Makefile (aux): Add xlocale.
|
||||||
|
* locale/xlocale.c: New file.
|
||||||
|
* include/locale.c (_nl_C_locobj): Declare.
|
||||||
|
* iconv/gconv_charset.h: Use __tolower_l, __isdigit_l, __isspace_l
|
||||||
|
with _nl_C_locobj instead of tolower, isdigit, isspace.
|
||||||
|
* iconv/gconv_conf.c: Likewise.
|
||||||
|
* iconv/gconv_int.h: Likewise.
|
||||||
|
* iconv/gconv_open.c: Likewise.
|
||||||
|
|
||||||
|
* locale/newlocale.c: Minor cleanups.
|
||||||
|
|
||||||
2001-08-14 Andreas Jaeger <aj@suse.de>
|
2001-08-14 Andreas Jaeger <aj@suse.de>
|
||||||
|
|
||||||
* sysdeps/ieee754/ldbl-128/w_expl.c: New file, copy from
|
* sysdeps/ieee754/ldbl-128/w_expl.c: New file, copy from
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
02111-1307 USA. */
|
02111-1307 USA. */
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
#include <locale.h>
|
||||||
|
|
||||||
|
|
||||||
static inline void
|
static inline void
|
||||||
@ -28,8 +29,9 @@ strip (char *wp, const char *s)
|
|||||||
|
|
||||||
while (*s != '\0')
|
while (*s != '\0')
|
||||||
{
|
{
|
||||||
if (isalnum (*s) || *s == '_' || *s == '-' || *s == '.')
|
if (__isalnum_l (*s, &_nl_C_locobj)
|
||||||
*wp++ = toupper (*s);
|
|| *s == '_' || *s == '-' || *s == '.')
|
||||||
|
*wp++ = __toupper_l (*s, &_nl_C_locobj);
|
||||||
else if (*s == '/')
|
else if (*s == '/')
|
||||||
{
|
{
|
||||||
if (++slash_count == 3)
|
if (++slash_count == 3)
|
||||||
@ -50,7 +52,7 @@ static char * __attribute__ ((unused))
|
|||||||
upstr (char *dst, const char *str)
|
upstr (char *dst, const char *str)
|
||||||
{
|
{
|
||||||
char *cp = dst;
|
char *cp = dst;
|
||||||
while ((*cp++ = toupper (*str++)) != '\0')
|
while ((*cp++ = __toupper_l (*str++, &_nl_C_locobj)) != '\0')
|
||||||
/* nothing */;
|
/* nothing */;
|
||||||
return dst;
|
return dst;
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <locale.h>
|
||||||
#include <search.h>
|
#include <search.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -129,20 +130,20 @@ add_alias (char *rp, void *modules)
|
|||||||
struct gconv_alias *new_alias;
|
struct gconv_alias *new_alias;
|
||||||
char *from, *to, *wp;
|
char *from, *to, *wp;
|
||||||
|
|
||||||
while (isspace (*rp))
|
while (__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
from = wp = rp;
|
from = wp = rp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
*wp++ = toupper (*rp++);
|
*wp++ = __toupper_l (*rp++, &_nl_C_locobj);
|
||||||
if (*rp == '\0')
|
if (*rp == '\0')
|
||||||
/* There is no `to' string on the line. Ignore it. */
|
/* There is no `to' string on the line. Ignore it. */
|
||||||
return;
|
return;
|
||||||
*wp++ = '\0';
|
*wp++ = '\0';
|
||||||
to = ++rp;
|
to = ++rp;
|
||||||
while (isspace (*rp))
|
while (__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
*wp++ = toupper (*rp++);
|
*wp++ = __toupper_l (*rp++, &_nl_C_locobj);
|
||||||
if (to == wp)
|
if (to == wp)
|
||||||
/* No `to' string, ignore the line. */
|
/* No `to' string, ignore the line. */
|
||||||
return;
|
return;
|
||||||
@ -250,30 +251,30 @@ add_module (char *rp, const char *directory, size_t dir_len, void **modules,
|
|||||||
int need_ext;
|
int need_ext;
|
||||||
int cost_hi;
|
int cost_hi;
|
||||||
|
|
||||||
while (isspace (*rp))
|
while (__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
from = rp;
|
from = rp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
{
|
{
|
||||||
*rp = toupper (*rp);
|
*rp = __toupper_l (*rp, &_nl_C_locobj);
|
||||||
++rp;
|
++rp;
|
||||||
}
|
}
|
||||||
if (*rp == '\0')
|
if (*rp == '\0')
|
||||||
return;
|
return;
|
||||||
*rp++ = '\0';
|
*rp++ = '\0';
|
||||||
to = wp = rp;
|
to = wp = rp;
|
||||||
while (isspace (*rp))
|
while (__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
*wp++ = toupper (*rp++);
|
*wp++ = __toupper_l (*rp++, &_nl_C_locobj);
|
||||||
if (*rp == '\0')
|
if (*rp == '\0')
|
||||||
return;
|
return;
|
||||||
*wp++ = '\0';
|
*wp++ = '\0';
|
||||||
do
|
do
|
||||||
++rp;
|
++rp;
|
||||||
while (isspace (*rp));
|
while (__isspace_l (*rp, &_nl_C_locobj));
|
||||||
module = wp;
|
module = wp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
*wp++ = *rp++;
|
*wp++ = *rp++;
|
||||||
if (*rp == '\0')
|
if (*rp == '\0')
|
||||||
{
|
{
|
||||||
@ -386,7 +387,7 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len,
|
|||||||
if (rp[n - 1] == '\n')
|
if (rp[n - 1] == '\n')
|
||||||
rp[n - 1] = '\0';
|
rp[n - 1] = '\0';
|
||||||
|
|
||||||
while (isspace (*rp))
|
while (__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
|
|
||||||
/* If this is an empty line go on with the next one. */
|
/* If this is an empty line go on with the next one. */
|
||||||
@ -394,7 +395,7 @@ read_conf_file (const char *filename, const char *directory, size_t dir_len,
|
|||||||
continue;
|
continue;
|
||||||
|
|
||||||
word = rp;
|
word = rp;
|
||||||
while (*rp != '\0' && !isspace (*rp))
|
while (*rp != '\0' && !__isspace_l (*rp, &_nl_C_locobj))
|
||||||
++rp;
|
++rp;
|
||||||
|
|
||||||
if (rp - word == sizeof ("alias") - 1
|
if (rp - word == sizeof ("alias") - 1
|
||||||
|
@ -141,7 +141,7 @@ extern const char *__gconv_path_envvar;
|
|||||||
tmp = result = alloca (cp - (str) + 3 + suffix_len); \
|
tmp = result = alloca (cp - (str) + 3 + suffix_len); \
|
||||||
cp = (str); \
|
cp = (str); \
|
||||||
while (*cp != '\0') \
|
while (*cp != '\0') \
|
||||||
*tmp++ = _toupper (*cp++); \
|
*tmp++ = __toupper_l (*cp++, &_nl_C_locobj); \
|
||||||
if (cnt < 2) \
|
if (cnt < 2) \
|
||||||
{ \
|
{ \
|
||||||
*tmp++ = '/'; \
|
*tmp++ = '/'; \
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
02111-1307 USA. */
|
02111-1307 USA. */
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <locale.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
@ -64,7 +65,7 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
|
|||||||
tok = __strtok_r (tok, ",", &ptr);
|
tok = __strtok_r (tok, ",", &ptr);
|
||||||
while (tok != NULL)
|
while (tok != NULL)
|
||||||
{
|
{
|
||||||
if (__strcasecmp (tok, "TRANSLIT") == 0)
|
if (__strcasecmp_l (tok, "TRANSLIT", &_nl_C_locobj) == 0)
|
||||||
{
|
{
|
||||||
/* It's the builtin transliteration handling. We only
|
/* It's the builtin transliteration handling. We only
|
||||||
support it for working on the internal encoding. */
|
support it for working on the internal encoding. */
|
||||||
@ -97,7 +98,7 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
|
|||||||
lastp->next = newp;
|
lastp->next = newp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (__strcasecmp (tok, "IGNORE") == 0)
|
else if (__strcasecmp_l (tok, "IGNORE", &_nl_C_locobj) == 0)
|
||||||
/* Set the flag to ignore all errors. */
|
/* Set the flag to ignore all errors. */
|
||||||
conv_flags |= __GCONV_IGNORE_ERRORS;
|
conv_flags |= __GCONV_IGNORE_ERRORS;
|
||||||
else
|
else
|
||||||
@ -110,7 +111,8 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
|
|||||||
|
|
||||||
for (runp = trans; runp != NULL; runp = runp->next)
|
for (runp = trans; runp != NULL; runp = runp->next)
|
||||||
if (runp->name != NULL
|
if (runp->name != NULL
|
||||||
&& __strcasecmp (tok, runp->name) == 0)
|
&& __strcasecmp_l (tok, runp->name,
|
||||||
|
&_nl_C_locobj) == 0)
|
||||||
break;
|
break;
|
||||||
else
|
else
|
||||||
lastp = runp;
|
lastp = runp;
|
||||||
@ -205,8 +207,8 @@ __gconv_open (const char *toset, const char *fromset, __gconv_t *handle,
|
|||||||
modules for this step. */
|
modules for this step. */
|
||||||
for (runp = trans; runp != NULL; runp = runp->next)
|
for (runp = trans; runp != NULL; runp = runp->next)
|
||||||
for (n = 0; n < runp->ncsnames; ++n)
|
for (n = 0; n < runp->ncsnames; ++n)
|
||||||
if (__strcasecmp (steps[cnt].__from_name,
|
if (__strcasecmp_l (steps[cnt].__from_name,
|
||||||
runp->csnames[n]) == 0)
|
runp->csnames[n], &_nl_C_locobj) == 0)
|
||||||
{
|
{
|
||||||
void *data = NULL;
|
void *data = NULL;
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
#ifndef _LOCALE_H
|
#ifndef _LOCALE_H
|
||||||
#include <locale/locale.h>
|
#include <locale/locale.h>
|
||||||
|
|
||||||
|
/* Locale object for C locale. */
|
||||||
|
extern struct __locale_struct _nl_C_locobj;
|
||||||
|
|
||||||
/* Now define the internal interfaces. */
|
/* Now define the internal interfaces. */
|
||||||
extern struct lconv *__localeconv (void);
|
extern struct lconv *__localeconv (void);
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/* Convert Inet number to ASCII representation.
|
/* Convert Inet number to ASCII representation.
|
||||||
Copyright (C) 1997, 1998, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
|
||||||
|
|
||||||
@ -96,11 +96,3 @@ free_key_mem (void *mem)
|
|||||||
free (mem);
|
free (mem);
|
||||||
__libc_setspecific (key, NULL);
|
__libc_setspecific (key, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void __attribute__ ((unused))
|
|
||||||
free_mem (void)
|
|
||||||
{
|
|
||||||
free (static_buf);
|
|
||||||
}
|
|
||||||
text_set_element (__libc_subfreeres, free_mem);
|
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2001-08-14 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
* lockfile.c (__pthread_provide_lockfile): New variable.
|
||||||
|
* pthread.c (__pthread_require_lockfile): New variable.
|
||||||
|
* cancel.c (__pthread_require_lockfile): New variable.
|
||||||
|
|
||||||
2001-07-31 Ulrich Drepper <drepper@redhat.com>
|
2001-07-31 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* tst-context.c (threadfct): Initialize context before calling
|
* tst-context.c (threadfct): Initialize context before calling
|
||||||
|
@ -207,9 +207,12 @@ void __pthread_perform_cleanup(char *currentframe)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifndef SHARED
|
#ifndef SHARED
|
||||||
/* We need a hook to force the cancelation wrappers to be linked in when
|
/* We need a hook to force the cancelation wrappers and file locking
|
||||||
static libpthread is used. */
|
to be linked in when static libpthread is used. */
|
||||||
extern const int __pthread_provide_wrappers;
|
extern const int __pthread_provide_wrappers;
|
||||||
static const int *const __pthread_require_wrappers =
|
static const int *const __pthread_require_wrappers =
|
||||||
&__pthread_provide_wrappers;
|
&__pthread_provide_wrappers;
|
||||||
|
extern const int __pthread_provide_lockfile;
|
||||||
|
static const int *const __pthread_require_lockfile =
|
||||||
|
&__pthread_provide_lockfile;
|
||||||
#endif
|
#endif
|
||||||
|
@ -26,6 +26,12 @@
|
|||||||
#include "../libio/libioP.h"
|
#include "../libio/libioP.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef SHARED
|
||||||
|
/* We need a hook to force this file to be linked in when static
|
||||||
|
libpthread is used. */
|
||||||
|
const int __pthread_provide_lockfile = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
void
|
void
|
||||||
__flockfile (FILE *stream)
|
__flockfile (FILE *stream)
|
||||||
{
|
{
|
||||||
|
@ -1158,9 +1158,12 @@ void __pthread_message(char * fmt, ...)
|
|||||||
|
|
||||||
|
|
||||||
#ifndef SHARED
|
#ifndef SHARED
|
||||||
/* We need a hook to force the cancelation wrappers to be linked in when
|
/* We need a hook to force the cancelation wrappers and file locking
|
||||||
static libpthread is used. */
|
to be linked in when static libpthread is used. */
|
||||||
extern const int __pthread_provide_wrappers;
|
extern const int __pthread_provide_wrappers;
|
||||||
static const int *const __pthread_require_wrappers =
|
static const int *const __pthread_require_wrappers =
|
||||||
&__pthread_provide_wrappers;
|
&__pthread_provide_wrappers;
|
||||||
|
extern const int __pthread_provide_lockfile;
|
||||||
|
static const int *const __pthread_require_lockfile =
|
||||||
|
&__pthread_provide_lockfile;
|
||||||
#endif
|
#endif
|
||||||
|
@ -40,7 +40,8 @@ routines = setlocale findlocale loadlocale localeconv nl_langinfo \
|
|||||||
tests = tst-C-locale
|
tests = tst-C-locale
|
||||||
categories = ctype messages monetary numeric time paper name \
|
categories = ctype messages monetary numeric time paper name \
|
||||||
address telephone measurement identification collate
|
address telephone measurement identification collate
|
||||||
aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name
|
aux = $(categories:%=lc-%) $(categories:%=C-%) SYS_libc C_name \
|
||||||
|
xlocale
|
||||||
others = localedef locale
|
others = localedef locale
|
||||||
#others-static = localedef locale
|
#others-static = localedef locale
|
||||||
install-bin = localedef locale
|
install-bin = localedef locale
|
||||||
|
@ -163,10 +163,12 @@ __newlocale (int category_mask, const char *locale, __locale_t base)
|
|||||||
if (result_ptr == NULL)
|
if (result_ptr == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
*result_ptr = result;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
*(result_ptr = base) = result;
|
/* We modify the base structure. */
|
||||||
|
result_ptr = base;
|
||||||
|
|
||||||
|
*result_ptr = result;
|
||||||
|
|
||||||
/* Update the special members. */
|
/* Update the special members. */
|
||||||
update:
|
update:
|
||||||
|
55
locale/xlocale.c
Normal file
55
locale/xlocale.c
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
/* C locale object.
|
||||||
|
Copyright (C) 2001 Free Software Foundation, Inc.
|
||||||
|
This file is part of the GNU C Library.
|
||||||
|
Contributed by Ulrich Drepper <drepper@cygnus.com>, 2001.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, write to the Free
|
||||||
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
||||||
|
02111-1307 USA. */
|
||||||
|
|
||||||
|
#include <locale.h>
|
||||||
|
#include "localeinfo.h"
|
||||||
|
|
||||||
|
#define DEFINE_CATEGORY(category, category_name, items, a) \
|
||||||
|
extern struct locale_data _nl_C_##category;
|
||||||
|
#include "categories.def"
|
||||||
|
#undef DEFINE_CATEGORY
|
||||||
|
|
||||||
|
/* Defined in locale/C-ctype.c. */
|
||||||
|
extern const char _nl_C_LC_CTYPE_class[];
|
||||||
|
extern const char _nl_C_LC_CTYPE_toupper[];
|
||||||
|
extern const char _nl_C_LC_CTYPE_tolower[];
|
||||||
|
|
||||||
|
|
||||||
|
struct __locale_struct _nl_C_locobj =
|
||||||
|
{
|
||||||
|
.__locales =
|
||||||
|
{
|
||||||
|
[LC_CTYPE] = &_nl_C_LC_CTYPE,
|
||||||
|
[LC_NUMERIC] = &_nl_C_LC_NUMERIC,
|
||||||
|
[LC_TIME] = &_nl_C_LC_TIME,
|
||||||
|
[LC_COLLATE] = &_nl_C_LC_COLLATE,
|
||||||
|
[LC_MONETARY] = &_nl_C_LC_MONETARY,
|
||||||
|
[LC_MESSAGES] = &_nl_C_LC_MESSAGES,
|
||||||
|
[LC_PAPER] = &_nl_C_LC_PAPER,
|
||||||
|
[LC_NAME] = &_nl_C_LC_NAME,
|
||||||
|
[LC_ADDRESS] = &_nl_C_LC_ADDRESS,
|
||||||
|
[LC_TELEPHONE] = &_nl_C_LC_TELEPHONE,
|
||||||
|
[LC_MEASUREMENT] = &_nl_C_LC_MEASUREMENT,
|
||||||
|
[LC_IDENTIFICATION] = &_nl_C_LC_IDENTIFICATION
|
||||||
|
},
|
||||||
|
.__ctype_b = (const unsigned short int *) _nl_C_LC_CTYPE_class + 128,
|
||||||
|
.__ctype_tolower = (const int *) _nl_C_LC_CTYPE_tolower + 128,
|
||||||
|
.__ctype_toupper = (const int *) _nl_C_LC_CTYPE_toupper + 128
|
||||||
|
};
|
@ -68,6 +68,8 @@ static char rcsid[] = "$Id$";
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <syslog.h>
|
#include <syslog.h>
|
||||||
|
|
||||||
|
#define RESOLVSORT
|
||||||
|
|
||||||
#ifndef LOG_AUTH
|
#ifndef LOG_AUTH
|
||||||
# define LOG_AUTH 0
|
# define LOG_AUTH 0
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
|
/* Copyright (C) 1996-2000, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
Extended from original form by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
Extended from original form by Ulrich Drepper <drepper@cygnus.com>, 1996.
|
||||||
|
|
||||||
@ -86,6 +86,8 @@
|
|||||||
#include <resolv/mapv4v6addr.h>
|
#include <resolv/mapv4v6addr.h>
|
||||||
#include <resolv/mapv4v6hostent.h>
|
#include <resolv/mapv4v6hostent.h>
|
||||||
|
|
||||||
|
#define RESOLVSORT
|
||||||
|
|
||||||
/* Maximum number of aliases we allow. */
|
/* Maximum number of aliases we allow. */
|
||||||
#define MAX_NR_ALIASES 48
|
#define MAX_NR_ALIASES 48
|
||||||
#define MAX_NR_ADDRS 48
|
#define MAX_NR_ADDRS 48
|
||||||
@ -330,6 +332,51 @@ _nss_dns_gethostbyaddr_r (const void *addr, socklen_t len, int af,
|
|||||||
return NSS_STATUS_SUCCESS;
|
return NSS_STATUS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef RESOLVSORT
|
||||||
|
static void addrsort (char **ap, int num);
|
||||||
|
|
||||||
|
static void
|
||||||
|
addrsort (char **ap, int num)
|
||||||
|
{
|
||||||
|
int i, j;
|
||||||
|
char **p;
|
||||||
|
short aval[MAX_NR_ADDRS];
|
||||||
|
int needsort = 0;
|
||||||
|
|
||||||
|
p = ap;
|
||||||
|
if (num > MAX_NR_ADDRS)
|
||||||
|
num = MAX_NR_ADDRS;
|
||||||
|
for (i = 0; i < num; i++, p++)
|
||||||
|
{
|
||||||
|
for (j = 0 ; (unsigned)j < _res.nsort; j++)
|
||||||
|
if (_res.sort_list[j].addr.s_addr ==
|
||||||
|
(((struct in_addr *)(*p))->s_addr & _res.sort_list[j].mask))
|
||||||
|
break;
|
||||||
|
aval[i] = j;
|
||||||
|
if (needsort == 0 && i > 0 && j < aval[i-1])
|
||||||
|
needsort = i;
|
||||||
|
}
|
||||||
|
if (!needsort)
|
||||||
|
return;
|
||||||
|
|
||||||
|
while (needsort++ < num)
|
||||||
|
for (j = needsort - 2; j >= 0; j--)
|
||||||
|
if (aval[j] > aval[j+1])
|
||||||
|
{
|
||||||
|
char *hp;
|
||||||
|
|
||||||
|
i = aval[j];
|
||||||
|
aval[j] = aval[j+1];
|
||||||
|
aval[j+1] = i;
|
||||||
|
|
||||||
|
hp = ap[j];
|
||||||
|
ap[j] = ap[j+1];
|
||||||
|
ap[j+1] = hp;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static enum nss_status
|
static enum nss_status
|
||||||
getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
|
getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1991,94,95,96,97,98,99,2000 Free Software Foundation, Inc.
|
/* Copyright (C) 1991, 1994-2000, 2001 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -130,11 +130,3 @@ getbuffer (void)
|
|||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static void
|
|
||||||
free_mem (void)
|
|
||||||
{
|
|
||||||
free (static_buf);
|
|
||||||
}
|
|
||||||
text_set_element (__libc_subfreeres, free_mem);
|
|
||||||
|
Loading…
Reference in New Issue
Block a user