]> code.citadel.org Git - citadel.git/blobdiff - webcit/autocompletion.c
Version number to 7.35 in preparation for an upcoming release.
[citadel.git] / webcit / autocompletion.c
index 43904bdecc9645a3238c02299e81f0cff3c1ba8b..327b98c6d3cec92a8895e4eb370a787c8e12e890 100644 (file)
@@ -13,14 +13,16 @@ void recp_autocomplete(char *partial) {
        char buf[1024];
        char name[128];
 
-       output_headers(0, 0, 0, 0, 0, 0, 0);
+       output_headers(0, 0, 0, 0, 0, 0);
 
        wprintf("Content-type: text/html\r\n"
                "Server: %s\r\n"
                "Connection: close\r\n"
                "Pragma: no-cache\r\n"
-               "Cache-Control: no-store\r\n",
-               SERVER);
+               "Cache-Control: no-store\r\n"
+               "Expires: -1\r\n"
+               ,
+               PACKAGE_STRING);
        begin_burst();
 
        wprintf("<ul>");
@@ -41,4 +43,3 @@ void recp_autocomplete(char *partial) {
        wprintf("\r\n\r\n");
        wDumpContent(0);
 }
-