diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-13 17:10:20 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2004-09-13 17:10:20 +0000 |
commit | d4c8e53b22246384fe8f9d259e5cc0f28c660c40 (patch) | |
tree | 97cfc576e5810d6881cf12f27e3f753d367ba1bc /newlib/libc/iconv/lib | |
parent | de4e88a8dfabd86b221ecc05a2b41d6375640891 (diff) | |
download | cygnal-d4c8e53b22246384fe8f9d259e5cc0f28c660c40.tar.gz cygnal-d4c8e53b22246384fe8f9d259e5cc0f28c660c40.tar.bz2 cygnal-d4c8e53b22246384fe8f9d259e5cc0f28c660c40.zip |
2004-09-13 Artem B. Bityuckiy <dedekind@oktetlabs.ru>
* libc/iconv/iconv.tex: Updated with new content.
* libc/iconv/lib/iconvnls.c: Reference ICONV_DEFAULT_NLSPATH
instead of NLS_DEFAULT_NLSPATH.
* libc/iconv/lib/iconvnls.h: Fix typo.
* libc/include/sys/iconvnls.h: New file.
Diffstat (limited to 'newlib/libc/iconv/lib')
-rw-r--r-- | newlib/libc/iconv/lib/iconvnls.c | 2 | ||||
-rw-r--r-- | newlib/libc/iconv/lib/iconvnls.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/iconv/lib/iconvnls.c b/newlib/libc/iconv/lib/iconvnls.c index db88916c8..1b42f2c7b 100644 --- a/newlib/libc/iconv/lib/iconvnls.c +++ b/newlib/libc/iconv/lib/iconvnls.c @@ -71,7 +71,7 @@ _DEFUN(_iconv_nls_construct_filename, (rptr, file, ext), int dirlen = strlen (dir); if ((path = _getenv_r (rptr, NLS_ENVVAR_NAME)) == NULL || *path == '\0') - path = NLS_DEFAULT_NLSPATH; + path = ICONV_DEFAULT_NLSPATH; len1 = strlen (path); len2 = strlen (file); diff --git a/newlib/libc/iconv/lib/iconvnls.h b/newlib/libc/iconv/lib/iconvnls.h index d31876b20..f6d4866a8 100644 --- a/newlib/libc/iconv/lib/iconvnls.h +++ b/newlib/libc/iconv/lib/iconvnls.h @@ -1,5 +1,5 @@ -#ifndef __INCOV_ICONVNLS_H__ -#define __INCOV_ICONVNLS_H__ +#ifndef __ICONV_ICONVNLS_H__ +#define __ICONV_ICONVNLS_H__ #include <newlib.h> @@ -33,5 +33,5 @@ # endif #endif /* _MB_CAPABLE */ -#endif /* !__INCOV_ICONVNLS_H__ */ +#endif /* !__ICONV_ICONVNLS_H__ */ |