+2016-06-11 Marko Myllynen <myllynen@redhat.com>
+
+ * locale/programs/localedef.c (oldstyle_tables): Remove.
+ * locale/programs/localedef.h (oldstyle_tables): Likewise.
+
2016-06-10 Joseph Myers <joseph@codesourcery.com>
[BZ #20240]
* The deprecated __malloc_initialize_hook variable has been removed from the
API.
+* The long unused --old-style flag has been removed. It hasn't done anything
+ in over 16 years. Scripts using this flag can safely drop it.
+
Security related changes:
* An unnecessary stack copy in _nss_dns_getnetbyname_r was removed. It
/* If not zero suppress warnings and information messages. */
int be_quiet;
-/* If not zero, produce old-style hash table instead of 3-level access
- tables. */
-int oldstyle_tables;
-
/* If not zero force output even if warning were issued. */
static int force_output;
#define OPT_POSIX 301
#define OPT_QUIET 302
-#define OPT_OLDSTYLE 303
#define OPT_PREFIX 304
#define OPT_NO_ARCHIVE 305
#define OPT_ADD_TO_ARCHIVE 306
{ NULL, 0, NULL, 0, N_("Output control:") },
{ "force", 'c', NULL, 0,
N_("Create output even if warning messages were issued") },
- { "old-style", OPT_OLDSTYLE, NULL, 0, N_("Create old-style tables") },
{ "prefix", OPT_PREFIX, N_("PATH"), 0, N_("Optional output file prefix") },
{ "posix", OPT_POSIX, NULL, 0, N_("Strictly conform to POSIX") },
{ "quiet", OPT_QUIET, NULL, 0,
case OPT_POSIX:
posix_conformance = 1;
break;
- case OPT_OLDSTYLE:
- oldstyle_tables = 1;
- break;
case OPT_PREFIX:
output_prefix = arg;
break;
/* Global variables of the localedef program. */
extern int verbose;
extern int be_quiet;
-extern int oldstyle_tables;
extern const char *repertoire_global;
extern int max_locarchive_open_retry;
extern bool no_archive;