summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kneschke <jan@kneschke.de>2006-01-14 18:36:45 +0000
committerJan Kneschke <jan@kneschke.de>2006-01-14 18:36:45 +0000
commitfdc5633fbd72f4572d85b27ec1b5f1764a5dc44c (patch)
tree422de9a697af3007d8f73eb7497f0178f6e91c0f
parent1790a1408dcc5fe6124f2b2525cff39edf511eed (diff)
downloadlighttpd-git-fdc5633fbd72f4572d85b27ec1b5f1764a5dc44c.tar.gz
this should fix the 'missing cleanup' msg for mod_mysql_vhost
git-svn-id: svn+ssh://svn.lighttpd.net/lighttpd/branches/lighttpd-merge-1.4.x@950 152afb58-edef-0310-8abb-c4023f1b3aa9
-rw-r--r--src/mod_mysql_vhost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_mysql_vhost.c b/src/mod_mysql_vhost.c
index ebe7657f..bf13e090 100644
--- a/src/mod_mysql_vhost.c
+++ b/src/mod_mysql_vhost.c
@@ -413,7 +413,7 @@ int mod_mysql_vhost_plugin_init(plugin *p) {
p->init = mod_mysql_vhost_init;
p->cleanup = mod_mysql_vhost_cleanup;
- p->handle_connection_close = mod_mysql_vhost_handle_connection_close;
+ p->handle_request_done = mod_mysql_vhost_handle_connection_close;
p->set_defaults = mod_mysql_vhost_set_defaults;
p->handle_docroot = mod_mysql_vhost_handle_docroot;