aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-03 16:07:21 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2004-05-03 16:07:21 +0000
commit4ef6de9fdeb4efdbc3630fdfd31682b8fcdd741d (patch)
treecc692ba3f339b82a4bf2b8b585f74216abd16d72
parent3a9fce4dc6abfb8a848acc95a6abe9d2250d51d4 (diff)
Fix expansion of __DATE__ and __TIME__ macros in termination message.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@199 1faa4e14-9dd3-4be0-9f0e-ffe519881164
-rw-r--r--src/Content.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Content.c b/src/Content.c
index bd4df0a..8ae4da1 100644
--- a/src/Content.c
+++ b/src/Content.c
@@ -1226,8 +1226,8 @@ static int ControlTerminationPage(const cGH *cctkGH, httpRequest *request)
ConcatCString(message, CCTK_FullVersion() );
ConcatCString(message,
"</span></li>\n"
- "<li>Flesh compiled on <span class=\"hilite\"> __DATE__ </span>\n"
- "at <span class=\"hilite\"> __TIME__ </span></li>\n");
+ "<li>Flesh compiled on <span class=\"hilite\"> " __DATE__" </span>\n"
+ "at <span class=\"hilite\"> "__TIME__" </span></li>\n");
HTTP_SendString(request, message);