diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-05-24 10:53:58 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-05-24 10:53:58 -0400 |
commit | 35794979cb285352b58cdf1879ca9cc246168729 (patch) | |
tree | c8d95912b708f53b9e2ca91e9655cc0d1972d6b8 /src/LYReadCFG.c | |
parent | a1eb5ea041519c111800cf264d1ff8ff08c2b0da (diff) | |
download | lynx-snapshots-35794979cb285352b58cdf1879ca9cc246168729.tar.gz |
snapshot of project "lynx", label v2-8-8dev_8f
Diffstat (limited to 'src/LYReadCFG.c')
-rw-r--r-- | src/LYReadCFG.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c index 8a2b3fad..816d6813 100644 --- a/src/LYReadCFG.c +++ b/src/LYReadCFG.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYReadCFG.c,v 1.161 2011/01/10 10:27:52 tom Exp $ + * $LynxId: LYReadCFG.c,v 1.162 2011/05/24 09:04:24 tom Exp $ */ #ifndef NO_RULES #include <HTRules.h> @@ -271,7 +271,7 @@ static void add_item_to_list(char *buffer, /* * Find first unescaped colon and process fields */ - if ((colon = find_colon(buffer)) != NULL) { + if (find_colon(buffer) != NULL) { colon = parse_list_string(&(cur_item->name), buffer); if (colon && menu_name) { |