summaryrefslogtreecommitdiffstats
path: root/server/util_charset.c
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2014-07-19 15:36:52 +0200
committerChristophe Jaillet <jailletc36@apache.org>2014-07-19 15:36:52 +0200
commitf791c1b710e01cd627c113e244085de5f4ce5927 (patch)
treeff543ec4a30245c7822e367122945b7ede336486 /server/util_charset.c
parentImprove doxygen comment. (diff)
downloadapache2-f791c1b710e01cd627c113e244085de5f4ce5927.tar.xz
apache2-f791c1b710e01cd627c113e244085de5f4ce5927.zip
Move comment from .c to .h in order to make use of it in doxygen.
Fix the comment that states that these vars are NULL on ASCII machine, they seem to be undefined instead. Rework some comments. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1611916 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/util_charset.c')
-rw-r--r--server/util_charset.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/server/util_charset.c b/server/util_charset.c
index 514e0b43f3..f896729a59 100644
--- a/server/util_charset.c
+++ b/server/util_charset.c
@@ -23,20 +23,6 @@
#include "http_core.h"
#include "util_charset.h"
-/* ap_hdrs_to_ascii, ap_hdrs_from_ascii
- *
- * These are the translation handles used to translate between the network
- * format of protocol headers and the local machine format.
- *
- * For an EBCDIC machine, these are valid handles which are set up at
- * initialization to translate between ISO-8859-1 and the code page of
- * the source code.
- *
- * For an ASCII machine, these remain NULL so that when they are stored
- * in the BUFF via ap_bsetop(BO_RXLATE) it ensures that no translation is
- * performed.
- */
-
apr_xlate_t *ap_hdrs_to_ascii, *ap_hdrs_from_ascii;
#endif /*APR_CHARSET_EBCDIC */