projects
/
slony1-engine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f89eb4a
)
Continue setting options even if a non-existing one
author
Jan Wieck
<JanWieck@Yahoo.com>
Mon, 30 Jun 2014 14:34:29 +0000
(10:34 -0400)
committer
Jan Wieck
<JanWieck@Yahoo.com>
Mon, 30 Jun 2014 14:37:47 +0000
(10:37 -0400)
was encountered. Fixes bug 343.
src/slon/conf-file.l
patch
|
blob
|
blame
|
history
diff --git
a/src/slon/conf-file.l
b/src/slon/conf-file.l
index 300928928e8c5c5f2913ce97e4641b015537edc9..8d6a4ebeac4ee576ccc4cbdd97fc56930c708a7a 100644
(file)
--- 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);