diff options
author | Haru <haru@dotalux.com> | 2015-09-15 15:33:58 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-11 00:24:21 +0200 |
commit | 4d806399aa529431f6c2a347930d91177d8a2bfa (patch) | |
tree | 45aa0a98e5f412ff6f7cbc399679c70d7221ce50 /src/common/HPM.h | |
parent | 9e2c59b0191e93effb7af82bb3e8e7e41bd75e67 (diff) | |
download | hercules-4d806399aa529431f6c2a347930d91177d8a2bfa.tar.gz hercules-4d806399aa529431f6c2a347930d91177d8a2bfa.tar.bz2 hercules-4d806399aa529431f6c2a347930d91177d8a2bfa.tar.xz hercules-4d806399aa529431f6c2a347930d91177d8a2bfa.zip |
Changed HPM->cmdline_plugins to a VECTOR and renamed to HPM->cmdline_load_plugins
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/HPM.h')
-rw-r--r-- | src/common/HPM.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/HPM.h b/src/common/HPM.h index c3284527a..444829419 100644 --- a/src/common/HPM.h +++ b/src/common/HPM.h @@ -119,8 +119,7 @@ struct HPM_interface { /* config listen */ VECTOR_DECL(struct HPConfListenStorage) config_listeners[HPCT_MAX]; /** Plugins requested through the command line */ - char **cmdline_plugins; - int cmdline_plugins_count; + VECTOR_DECL(char *) cmdline_load_plugins; /* funcs */ void (*init) (void); void (*final) (void); |