Skip to content

Commit

Permalink
Mention in NEWS that CreateHome should be used instead of SQLHomedirO…
Browse files Browse the repository at this point in the history
…nDemand.

Mark the SQLHomedirOnDemand config handler as deprecated in the mod_sql source.
  • Loading branch information
castaglia committed Apr 17, 2006
1 parent fb0acf5 commit 85ada64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$Id: NEWS,v 1.746 2006-04-17 22:20:55 castaglia Exp $
$Id: NEWS,v 1.747 2006-04-17 22:23:55 castaglia Exp $

-----------------------------------------------------------------------------
More details on the bugs listed below can be found by using the bug number
Expand Down Expand Up @@ -29,7 +29,8 @@ CVS
- Bug 2611 - CreateHome should allow non-root-owned parent directories.
- Bug 2686 - Allow CCC command but still require SSL/TLS protection during
authentication.
- Bug 2628 - SQLHomedirOnDemand should be deprecated.
- Bug 2628 - SQLHomedirOnDemand should be deprecated. The CreateHome
directive should be used instead.

1.3.0 - Released 16-Apr-2006
--------------------------------
Expand Down
6 changes: 4 additions & 2 deletions contrib/mod_sql.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* the resulting executable, without including the source code for OpenSSL in
* the source distribution.
*
* $Id: mod_sql.c,v 1.102 2006-04-17 22:20:55 castaglia Exp $
* $Id: mod_sql.c,v 1.103 2006-04-17 22:23:55 castaglia Exp $
*/

#include "conf.h"
Expand Down Expand Up @@ -4590,13 +4590,15 @@ static conftable sql_conftab[] = {
{ "SQLRatioStats", set_sqlratiostats, NULL },

{ "SQLDefaultHomedir", set_sqldefaulthomedir, NULL },
{ "SQLHomedirOnDemand", set_sqlhomedirondemand, NULL },

{ "SQLLog", set_sqllog, NULL },
{ "SQLLogFile", set_sqllogfile, NULL },
{ "SQLNamedQuery", set_sqlnamedquery, NULL },
{ "SQLShowInfo", set_sqlshowinfo, NULL },

/* Deprecated. */
{ "SQLHomedirOnDemand", set_sqlhomedirondemand, NULL },

{ NULL, NULL, NULL }
};

Expand Down

0 comments on commit 85ada64

Please sign in to comment.