git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95148
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.37
+ *) The APLOG_NOERRNO flag to ap_log_[r]error() is now deprecated.
+ It is currently ignored and it will be removed in a future release
+ of Apache. [Jeff Trawick]
+
*) Removed documentation references to the no-longer-supported
"make certificate" feature of mod_ssl for Apache 1.3.x. Test
certificates, if truly desired, can be generated using openssl
#endif
+/* APLOG_NOERRNO is ignored and should not be used. It will be
+ * removed in a future release of Apache.
+ */
#define APLOG_NOERRNO (APLOG_LEVELMASK + 1)
/* Use APLOG_TOCLIENT to cause ap_log_rerror() to send the message
len += apr_snprintf(errstr + len, MAX_STRING_LEN - len,
"[client %s] ", r->connection->remote_ip);
}
- if (!(level & APLOG_NOERRNO) && (status != 0)) {
+ if (status != 0) {
char buf[120];
len += apr_snprintf(errstr + len, MAX_STRING_LEN - len,
"(%d)%s: ", status,