aboutsummaryrefslogtreecommitdiff
path: root/src/Headers.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Headers.c')
-rw-r--r--src/Headers.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Headers.c b/src/Headers.c
index b50c890..17cd140 100644
--- a/src/Headers.c
+++ b/src/Headers.c
@@ -42,8 +42,8 @@ struct httpLink
********************* Other Routine Prototypes *********************
********************************************************************/
-int HTTP_ContentHeader(cGH *GH, int choice, int len, char *header, char *menu);
-int HTTP_ContentFooter(cGH *GH, int choice, int len, char *footer);
+int HTTP_ContentHeader(const cGH *GH, int choice, int len, char *header, char *menu);
+int HTTP_ContentFooter(const cGH *GH, int choice, int len, char *footer);
/********************************************************************
********************* Local Data *****************************
@@ -96,7 +96,7 @@ static const char *cactus_footer =
@endhistory
@@*/
-int HTTP_ContentHeader(cGH *GH, int choice, int len, char *header, char *menu)
+int HTTP_ContentHeader(const cGH *GH, int choice, int len, char *header, char *menu)
{
char title[TITLE_ARRAY_SIZE];
char parfile[200];
@@ -212,7 +212,7 @@ int HTTP_ContentHeader(cGH *GH, int choice, int len, char *header, char *menu)
@endhistory
@@*/
-int HTTP_ContentFooter(cGH *GH, int choice, int len, char *footer)
+int HTTP_ContentFooter(const cGH *GH, int choice, int len, char *footer)
{
/* avoid compiler warnings about unused parameters */
GH = GH;