From cee0e82599b0179392e3f526e0ad499988c8fd6a Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Wed, 19 Feb 2003 09:32:05 +0000 Subject: [PATCH] Fixed problem with cookie path SVN revision: 404 --- src/elogd.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/elogd.c b/src/elogd.c index 71cd5388..efcdbb8f 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.20 2003/02/19 09:32:05 midas + Fixed problem with cookie path + Revision 1.19 2003/02/19 08:05:49 midas Changed permission of 'elogd.pid' file @@ -3614,10 +3617,10 @@ struct tm *gmt; { extract_path(str); url_encode(str, sizeof(str)); - rsprintf(" path=/%s%s;", str, lbs->name_enc); + rsprintf(" path=/%s/%s;", str, lbs->name_enc); } else - rsprintf(" path=/%s;", lbs->name_enc); + rsprintf(" path=/%s/;", lbs->name_enc); } exp = atof(expiration);