about summary refs log tree commit diff
path: root/intl/localealias.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-29 10:16:38 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-29 10:16:38 +0000
commit842d0295a1656d82eff7395682371390f3962e95 (patch)
tree0b0b9bb398f10179413fa739fa8ef57a79037a92 /intl/localealias.c
parentf326a706f8ef9f539bf44312ef8c6c5baa2a0ebe (diff)
downloadglibc-842d0295a1656d82eff7395682371390f3962e95.tar.gz
glibc-842d0295a1656d82eff7395682371390f3962e95.tar.xz
glibc-842d0295a1656d82eff7395682371390f3962e95.zip
Update.
	* intl/localealias.c (read_alias_file): Use unsigned char for
	local variables.  Remove unused variable tp.
	* intl/l10nflist.c (_nl_normalize_codeset): Use unsigned char *
	for type of codeset.  For loosing Solaris systems.
	* intl/loadinfo.h: Adapt prototype of _nl_normalize_codeset.
	* intl/bindtextdom.c (BINDTEXTDOMAIN): Don't define local variable
	len if not needed.
	Patches by Jim Meyering.
Diffstat (limited to 'intl/localealias.c')
-rw-r--r--intl/localealias.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/intl/localealias.c b/intl/localealias.c
index d6ddf0c2c6..7f668ec360 100644
--- a/intl/localealias.c
+++ b/intl/localealias.c
@@ -256,10 +256,10 @@ read_alias_file (fname, fname_len)
 	 b) these fields must be usable as file names and so must not
 	    be that long
        */
-      char buf[BUFSIZ];
-      char *alias;
-      char *value;
-      char *cp;
+      unsigned char buf[BUFSIZ];
+      unsigned char *alias;
+      unsigned char *value;
+      unsigned char *cp;
 
       if (fgets (buf, sizeof buf, fp) == NULL)
 	/* EOF reached.  */
@@ -299,7 +299,6 @@ read_alias_file (fname, fname_len)
 
 	  if (cp[0] != '\0')
 	    {
-	      char *tp;
 	      size_t alias_len;
 	      size_t value_len;