From: Jan Wieck Date: Mon, 30 Jun 2014 14:34:29 +0000 (-0400) Subject: Continue setting options even if a non-existing one X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=e831568dca753ef6a83f6e69e3a2f3e95a2d1ac7;p=slony1-engine.git Continue setting options even if a non-existing one was encountered. Fixes bug 343. --- diff --git a/src/slon/conf-file.l b/src/slon/conf-file.l index 30092892..8d6a4ebe 100644 --- a/src/slon/conf-file.l +++ b/src/slon/conf-file.l @@ -264,13 +264,6 @@ void ProcessConfigFile(const char *filename) fclose(fp); - for (item = head; item; item=item->next) - { - if (!set_config_option(item->name, item->value)) - { - goto cleanup_exit; - } - } for(item = head; item; item=item->next) { set_config_option(item->name, item->value);