From f322968cb3e9187eb5ddc9d575fa77027b71bb3b Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 10 Oct 2013 10:56:02 +0200 Subject: INI: Disable line-wrapping functionality Supporting the latest INI release brought an incompatible change. Lines beginning with a whitespace were treated as continuation of the previous line. This patch reverts to ignoring the whitespace as we did previously so that the existing configurations keep working. --- src/util/sss_ini.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/sss_ini.c b/src/util/sss_ini.c index 6d93b16e..9f23500a 100644 --- a/src/util/sss_ini.c +++ b/src/util/sss_ini.c @@ -223,7 +223,7 @@ int sss_ini_get_config(struct sss_ini_initdata *init_data, ret = ini_config_parse(init_data->file, INI_STOP_ON_ANY, INI_MV1S_OVERWRITE, - 0, + INI_PARSE_NOWRAP, init_data->sssd_config); if (ret != EOK) { -- cgit