1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-09-29 21:49:07 +00:00

Fixed small bug in config parsing (thanks robgrady, bug 1306032)

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@332 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Brenden Matthews 2005-09-28 02:33:24 +00:00
parent 7c37c3322a
commit 16e18039bc
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# $Id$
2005-09-27
* Fixed small bug in config parsing (thanks robgrady, bug 1306032)
2005-09-24
* Fixed bug where graphs/bars don't show when maximum_width is enabled

View File

@ -4332,7 +4332,7 @@ static void load_config_file(const char *f)
#define CONF2(a) if (strcasecmp(name, a) == 0)
#define CONF(a) else CONF2(a)
#define CONF3(a,b) \
else if (strcasecmp(name, a) == 0 || strcasecmp(name, a) == 0)
else if (strcasecmp(name, a) == 0 || strcasecmp(name, b) == 0)
#ifdef X11