- /* 'name' must be already checked. */
- if (strcmp(name, "C") == 0 || strcmp(name, "POSIX") == 0) {
- *using_locale = 0;
- return (_LDP_CACHE);
- }
-
- /*
- * If the locale name is the same as our cache, use the cache.
- */
- if (locale_buf != NULL && strcmp(name, locale_buf) == 0) {
- *using_locale = 1;
- return (_LDP_CACHE);
- }
-