summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2020-09-26 16:41:11 -0400
committerDrew DeVault <sir@cmpwn.com>2020-09-26 16:41:11 -0400
commitfc036335eb8d32ad991874aac364752b68a43a24 (patch)
tree4b8270ea648011c6b61a6791101f2c50bfcb9bdd /src
parent50d21c03f5b02254d8eb0953bd5e635813cfe1c1 (diff)
downloadgmnisrv-fc036335eb8d32ad991874aac364752b68a43a24.tar.gz
gmnisrv-fc036335eb8d32ad991874aac364752b68a43a24.tar.xz
gmnisrv-fc036335eb8d32ad991874aac364752b68a43a24.zip
Remove [:tls] email directive
Diffstat (limited to 'src')
-rw-r--r--src/config.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index 367094f..36060cf 100644
--- a/src/config.c
+++ b/src/config.c
@@ -98,7 +98,6 @@ conf_ini_handler(void *user, const char *section,
} strvars[] = {
{ ":tls", "store", &conf->tls.store },
{ ":tls", "organization", &conf->tls.organization },
- { ":tls", "email", &conf->tls.email },
};
struct {
char *section;
@@ -223,7 +222,6 @@ config_finish(struct gmnisrv_config *conf)
{
free(conf->tls.store);
free(conf->tls.organization);
- free(conf->tls.email);
struct gmnisrv_bind *bind = conf->binds;
while (bind) {
struct gmnisrv_bind *next = bind->next;