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/htdbm.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/htdbm.c')
-rw-r--r-- | support/htdbm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/htdbm.c b/support/htdbm.c index 1d59110d15..652d5d793f 100644 --- a/support/htdbm.c +++ b/support/htdbm.c @@ -143,7 +143,7 @@ static apr_status_t htdbm_init(apr_pool_t **pool, htdbm_t **hdbm) (*hdbm)->pool = *pool; #if APR_CHARSET_EBCDIC - rv = apr_xlate_open(&((*hdbm)->to_ascii), "ISO8859-1", APR_DEFAULT_CHARSET, (*hdbm)->pool); + rv = apr_xlate_open(&((*hdbm)->to_ascii), "ISO-8859-1", APR_DEFAULT_CHARSET, (*hdbm)->pool); if (rv) { fprintf(stderr, "apr_xlate_open(to ASCII)->%d\n", rv); return APR_EGENERAL; |