From 6b2c07bba5635d3d39248e61b832d46c41cc661c Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 15 Mar 2010 10:19:58 +0000 Subject: [PATCH] Fixed bug with URL in expanding groups using top groups SVN revision: 2293 --- src/elogd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index dd40e23d..5de3b23b 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -25072,13 +25072,13 @@ void show_logbook_node(LBLIST plb, LBLIST pparent, int level, int btop) else { if (pparent != NULL) { if (getcfg_topgroup()) - rsprintf("- %s ", getcfg_topgroup(), pparent->name, + rsprintf("- %s ", getcfg_topgroup(), pparent->name, plb->name); else rsprintf("- %s ", pparent->name, plb->name); } else { if (getcfg_topgroup()) - rsprintf("- %s ", getcfg_topgroup(), plb->name); + rsprintf("- %s ", getcfg_topgroup(), plb->name); else rsprintf("- %s ", plb->name); } @@ -25088,7 +25088,7 @@ void show_logbook_node(LBLIST plb, LBLIST pparent, int level, int btop) rsprintf("%s", plb->name); else { if (getcfg_topgroup()) - rsprintf("+ %s ", getcfg_topgroup(), plb->name, plb->name); + rsprintf("+ %s ", getcfg_topgroup(), plb->name, plb->name); else rsprintf("+ %s ", plb->name, plb->name); }