From: Arran Cudbard-Bell Date: Wed, 19 Aug 2015 03:16:13 +0000 (-0400) Subject: Missing conf terminator Closes #1167 X-Git-Tag: release_3_0_10~221 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e329b2fbadf52b468ff47a4bcc6abad4c13bb7e0;p=thirdparty%2Ffreeradius-server.git Missing conf terminator Closes #1167 --- diff --git a/src/modules/rlm_ldap/rlm_ldap.c b/src/modules/rlm_ldap/rlm_ldap.c index 404efac0a22..0aaad88c0a7 100644 --- a/src/modules/rlm_ldap/rlm_ldap.c +++ b/src/modules/rlm_ldap/rlm_ldap.c @@ -73,13 +73,17 @@ static FR_NAME_NUMBER const ldap_dereference[] = { static CONF_PARSER sasl_mech_dynamic[] = { { "mech", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_TMPL | PW_TYPE_NOT_EMPTY, ldap_sasl_dynamic, mech), NULL }, { "proxy", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_TMPL, ldap_sasl_dynamic, proxy), NULL }, - { "realm", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_TMPL, ldap_sasl_dynamic, realm), NULL } + { "realm", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_TMPL, ldap_sasl_dynamic, realm), NULL }, + + { NULL, -1, 0, NULL, NULL } }; static CONF_PARSER sasl_mech_static[] = { { "mech", FR_CONF_OFFSET(PW_TYPE_STRING | PW_TYPE_NOT_EMPTY, ldap_sasl, mech), NULL }, { "proxy", FR_CONF_OFFSET(PW_TYPE_STRING, ldap_sasl, proxy), NULL }, - { "realm", FR_CONF_OFFSET(PW_TYPE_STRING, ldap_sasl, realm), NULL } + { "realm", FR_CONF_OFFSET(PW_TYPE_STRING, ldap_sasl, realm), NULL }, + + { NULL, -1, 0, NULL, NULL } }; /*