From 5369fa3b5dc021e9b0bb58dd79f40d41a5f85c6c Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 27 Jun 2010 13:57:17 +0200 Subject: [PATCH] src/utils_cgi.c: Print a "X-Generator" message in the HTTP header. --- src/utils_cgi.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/utils_cgi.c b/src/utils_cgi.c index 96b1b82..ed4c446 100644 --- a/src/utils_cgi.c +++ b/src/utils_cgi.c @@ -1,3 +1,5 @@ +#include "config.h" + #include #include #include @@ -549,7 +551,9 @@ int html_print_page (const char *title, /* {{{ */ { char *title_html; - printf ("Content-Type: text/html\n\n"); + printf ("Content-Type: text/html\n" + "X-Generator: "PACKAGE_STRING"\n" + "\n\n"); if (title == NULL) title = "c4: collection4 graph interface"; -- 2.11.0