[PATCH] Follow up for the /usr/libexec/getconf file renaming
Jakub Jelinek
jakub@redhat.com
Tue Dec 14 15:15:00 GMT 2004
Hi!
Withouth this, sysconf (_POSIX_V6_whatever) will not work for the other
ABI environments.
2004-12-14 Jakub Jelinek <jakub@redhat.com>
* sysdeps/posix/sysconf.c (__sysconf_check_spec): Remove leading
underscore from GETCONF_DIR filenames.
--- libc/sysdeps/posix/sysconf.c.jj 2004-12-13 09:39:54.000000000 +0100
+++ libc/sysdeps/posix/sysconf.c 2004-12-14 16:12:44.926421643 +0100
@@ -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;
Jakub
More information about the Libc-hacker
mailing list