2004-12-14  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/posix/sysconf.c (__sysconf_check_spec): Remove leading
	underscore from GETCONF_DIR filenames.
This commit is contained in:
Ulrich Drepper 2004-12-14 15:39:54 +00:00
parent 9340b0881f
commit 1f7d96933e
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-12-14 Jakub Jelinek <jakub@redhat.com>
* sysdeps/posix/sysconf.c (__sysconf_check_spec): Remove leading
underscore from GETCONF_DIR filenames.
2004-12-13 Ulrich Drepper <drepper@redhat.com>
* po/de.po: Update from translation team.

View File

@ -1227,9 +1227,9 @@ __sysconf_check_spec (const char *spec)
size_t getconf_dirlen = strlen (getconf_dir);
size_t speclen = strlen (spec);
char name[getconf_dirlen + sizeof ("/_POSIX_V6_") + speclen];
char name[getconf_dirlen + sizeof ("/POSIX_V6_") + speclen];
memcpy (mempcpy (mempcpy (name, getconf_dir, getconf_dirlen),
"/_POSIX_V6_", sizeof ("/_POSIX_V6_") - 1),
"/POSIX_V6_", sizeof ("/POSIX_V6_") - 1),
spec, speclen + 1);
struct stat64 st;