-*- coding: utf-8 -*-
Changes with Apache 2.2.2
+ *) htdbm: Warn the user when adding a plaintext password on a platform
+ where it wouldn't work with the server (i.e., anywhere that has
+ crypt()). [Jeff Trawick]
+
*) mod_proxy: don't reuse a connection that may be to the wrong backend
PR 39253 [Ruediger Pluem]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * htdbm: Warn when the user adds a plaintext password on a platform
- with crypt(). The server will assume that the format is crypt().
- Trunk version of patch:
- http://svn.apache.org/viewcvs?rev=392944&view=rev
- 2.2.x version of patch:
- Trunk version works
- +1: trawick, rpluem, colm
-
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
* mod_dbd: When threaded, create a private pool in child_init
case ALG_PLAIN:
/* XXX this len limitation is not in sync with any HTTPd len. */
apr_cpystrn(cpw,htdbm->userpass,sizeof(cpw));
+#if APR_HAVE_CRYPT_H
+ fprintf(stderr, "Warning: Plain text passwords aren't supported by the "
+ "server on this platform!\n");
+#endif
break;
#if APR_HAVE_CRYPT_H
case ALG_CRYPT: