From 29bc92071d75752fafe3af4c1f242a62e398532c Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Wed, 8 Jan 2003 10:58:42 +0000 Subject: [PATCH] Fixed bug with unencoded logbook in URL SVN revision: 323 --- elogd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/elogd.c b/elogd.c index b84053ec..df5a34b1 100755 --- a/elogd.c +++ b/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 2.125 2003/01/08 10:58:42 midas + Fixed bug with unencoded logbook in URL + Revision 2.124 2003/01/08 10:07:18 midas Issue warning for wrong group syntax in elogd.cfg @@ -8591,7 +8594,7 @@ char list[MAX_PARAM][NAME_LENGTH]; } else { - strlcat(str, lbs->name, sizeof(str)); + strlcat(str, lbs->name_enc, sizeof(str)); strlcat(str, "/", sizeof(str)); }