Update docs for ap_cfg_getc
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1086761 13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.3.12
+ *) core: Change the APIs of ap_cfg_getline() and ap_cfg_getc() to return an
+ error code. Abort with a nice error message if a config line is too long.
+ Partial fix for PR 50824. [Stefan Fritsch]
+
*) mod_info: Dump config to stdout during startup if -DDUMP_CONFIG is
specified. [Stefan Fritsch]
/**
* Read one char from open configfile_t, increase line number upon LF
+ * @param ch place to store the char read
* @param cfp The file to read from
- * @return the character read
+ * @return error status
*/
AP_DECLARE(apr_status_t) ap_cfg_getc(char *ch, ap_configfile_t *cfp);