summaryrefslogtreecommitdiff
path: root/src/mod_vhostdb_pgsql.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-10-19 00:30:54 -0400
committerGlenn Strauss <gstrauss@gluelogic.com>2020-05-23 17:59:29 -0400
commite2de4e581ec7a61fd9f5218f260d3890837e31a4 (patch)
tree1b3a143b871afa3140d3876a6628b035079ef9db /src/mod_vhostdb_pgsql.c
parent2c43ae73dd8e8c475fcd578d4bcdf6fccfadb59c (diff)
downloadlighttpd-git-e2de4e581ec7a61fd9f5218f260d3890837e31a4.tar.gz
[core] const char *name in struct plugin
put void *data (always used) as first member of struct plugin add int nconfig member to PLUGIN_DATA calloc() inits p->data to NULL
Diffstat (limited to 'src/mod_vhostdb_pgsql.c')
-rw-r--r--src/mod_vhostdb_pgsql.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_vhostdb_pgsql.c b/src/mod_vhostdb_pgsql.c
index 36182213..261e4be2 100644
--- a/src/mod_vhostdb_pgsql.c
+++ b/src/mod_vhostdb_pgsql.c
@@ -261,7 +261,7 @@ int mod_vhostdb_pgsql_plugin_init (plugin *p);
int mod_vhostdb_pgsql_plugin_init (plugin *p)
{
p->version = LIGHTTPD_VERSION_ID;
- p->name = buffer_init_string("vhostdb_pgsql");
+ p->name = "vhostdb_pgsql";
p->init = mod_vhostdb_init;
p->cleanup = mod_vhostdb_cleanup;