From aaf6e1b116d7e522e09eda6a7bf3d47da3be69ab Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Mon, 17 Feb 2003 15:53:44 +0000 Subject: [PATCH] Fixed absolute path for cookies SVN revision: 400 --- src/elogd.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/elogd.c b/src/elogd.c index 85b41fe9..0750900f 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -6,6 +6,9 @@ Contents: Web server program for Electronic Logbook ELOG $Log$ + Revision 1.17 2003/02/17 15:53:44 midas + Fixed absolute path for cookies + Revision 1.16 2003/02/17 15:25:32 midas Fixed bug with vanishing attributes on upload in new message @@ -3600,7 +3603,7 @@ 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);