From dbc91b08117b06fd58e36ae10bbc9759726b4eb9 Mon Sep 17 00:00:00 2001 From: "Nicholas J. Kain" Date: Mon, 21 Apr 2014 09:02:58 -0400 Subject: [PATCH] Background option in config files should be a boolval rathe than a value. --- src/cfg.rl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfg.rl b/src/cfg.rl index e938f88..372af40 100644 --- a/src/cfg.rl +++ b/src/cfg.rl @@ -184,7 +184,7 @@ struct cfgparse { blankline = term; clientid = 'clientid' value @clientid; - background = 'background' value @background; + background = 'background' boolval @background; pidfile = 'pidfile' value @pidfile; hostname = 'hostname' value @hostname; interface = 'interface' value @interface;