summaryrefslogtreecommitdiffstats
path: root/lib/param/param_table.c
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-01-16 13:13:11 +1300
committerAndrew Bartlett <abartlet@samba.org>2014-02-12 13:17:14 +1300
commit89ff7b0d851a971a8bdca7f9ff2200db61be4e03 (patch)
tree4ce69565efa06d2e158e41c712b595d5f61c8a6e /lib/param/param_table.c
parent2bf17a9d75fed68dd41c770ea9e0c284599f1a82 (diff)
downloadsamba-89ff7b0d851a971a8bdca7f9ff2200db61be4e03.tar.gz
samba-89ff7b0d851a971a8bdca7f9ff2200db61be4e03.tar.xz
samba-89ff7b0d851a971a8bdca7f9ff2200db61be4e03.zip
param: remove special cases for tls files
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/param/param_table.c')
-rw-r--r--lib/param/param_table.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/param/param_table.c b/lib/param/param_table.c
index d108833aba1..ad929ec16b2 100644
--- a/lib/param/param_table.c
+++ b/lib/param/param_table.c
@@ -4349,7 +4349,7 @@ static struct parm_struct parm_table[] = {
.label = "tls keyfile",
.type = P_STRING,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(tls_keyfile),
+ .offset = GLOBAL_VAR(_tls_keyfile),
.special = NULL,
.enum_list = NULL
},
@@ -4357,7 +4357,7 @@ static struct parm_struct parm_table[] = {
.label = "tls certfile",
.type = P_STRING,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(tls_certfile),
+ .offset = GLOBAL_VAR(_tls_certfile),
.special = NULL,
.enum_list = NULL
},
@@ -4365,7 +4365,7 @@ static struct parm_struct parm_table[] = {
.label = "tls cafile",
.type = P_STRING,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(tls_cafile),
+ .offset = GLOBAL_VAR(_tls_cafile),
.special = NULL,
.enum_list = NULL
},
@@ -4373,7 +4373,7 @@ static struct parm_struct parm_table[] = {
.label = "tls crlfile",
.type = P_STRING,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(tls_crlfile),
+ .offset = GLOBAL_VAR(_tls_crlfile),
.special = NULL,
.enum_list = NULL
},
@@ -4381,7 +4381,7 @@ static struct parm_struct parm_table[] = {
.label = "tls dh params file",
.type = P_STRING,
.p_class = P_GLOBAL,
- .offset = GLOBAL_VAR(tls_dhpfile),
+ .offset = GLOBAL_VAR(_tls_dhpfile),
.special = NULL,
.enum_list = NULL
},