diff options
| author | Michael Stapelberg <michael@stapelberg.de> | 2011-10-18 22:40:14 +0100 | 
|---|---|---|
| committer | Michael Stapelberg <michael@stapelberg.de> | 2011-10-18 22:40:14 +0100 | 
| commit | 631e460f8afb6b483fa0e84844996cf97953d670 (patch) | |
| tree | 84ac0417bae112a866b9e3899c45c22ba57666bc | |
| parent | 692f0124a34625f3296d97496b721973e1f951a2 (diff) | |
make libconfuse handle config files case insensitive
| -rw-r--r-- | i3status.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -303,7 +303,7 @@ int main(int argc, char *argv[]) {          if (configfile == NULL)                  configfile = get_config_path(); -        cfg = cfg_init(opts, CFGF_NONE); +        cfg = cfg_init(opts, CFGF_NOCASE);          if (cfg_parse(cfg, configfile) == CFG_PARSE_ERROR)                  return EXIT_FAILURE; | 
