diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2019-10-19 00:30:54 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2020-05-23 17:59:29 -0400 |
commit | e2de4e581ec7a61fd9f5218f260d3890837e31a4 (patch) | |
tree | 1b3a143b871afa3140d3876a6628b035079ef9db /src/mod_vhostdb_ldap.c | |
parent | 2c43ae73dd8e8c475fcd578d4bcdf6fccfadb59c (diff) | |
download | lighttpd-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_ldap.c')
-rw-r--r-- | src/mod_vhostdb_ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_vhostdb_ldap.c b/src/mod_vhostdb_ldap.c index e8eea3ec..3f09234f 100644 --- a/src/mod_vhostdb_ldap.c +++ b/src/mod_vhostdb_ldap.c @@ -548,7 +548,7 @@ int mod_vhostdb_ldap_plugin_init (plugin *p); int mod_vhostdb_ldap_plugin_init (plugin *p) { p->version = LIGHTTPD_VERSION_ID; - p->name = buffer_init_string("vhostdb_ldap"); + p->name = "vhostdb_ldap"; p->init = mod_vhostdb_init; p->cleanup = mod_vhostdb_cleanup; |