diff options
author | Martin Kraemer <martin@apache.org> | 2004-06-29 15:33:24 +0200 |
---|---|---|
committer | Martin Kraemer <martin@apache.org> | 2004-06-29 15:33:24 +0200 |
commit | a22426c6995348385a01d6a916f45ce08ca98d3e (patch) | |
tree | 62b661830726de610e4ce8179ef16f57086bc82e /support/htpasswd.c | |
parent | Note a backport (diff) | |
download | apache2-a22426c6995348385a01d6a916f45ce08ca98d3e.tar.xz apache2-a22426c6995348385a01d6a916f45ce08ca98d3e.zip |
Use standardized names for ISO-8859-1, see http://www.iana.org/assignments/character-sets
(Using the name iso8859-1 may still work, because it is aliased in apr-iconv/ccs/charset.aliases)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104078 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/htpasswd.c')
-rw-r--r-- | support/htpasswd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htpasswd.c b/support/htpasswd.c index 3675c52b46..af03b11c1f 100644 --- a/support/htpasswd.c +++ b/support/htpasswd.c @@ -412,7 +412,7 @@ int main(int argc, const char * const argv[]) apr_file_open_stderr(&errfile, pool); #if APR_CHARSET_EBCDIC - rv = apr_xlate_open(&to_ascii, "ISO8859-1", APR_DEFAULT_CHARSET, pool); + rv = apr_xlate_open(&to_ascii, "ISO-8859-1", APR_DEFAULT_CHARSET, pool); if (rv) { apr_file_printf(errfile, "apr_xlate_open(to ASCII)->%d\n", rv); exit(1); |