Signed-off-by: John Keeping <john@keeping.me.uk>
time_t modified;
time_t expires;
size_t size;
- char *mimetype;
- char *charset;
- char *filename;
- char *etag;
- char *title;
+ const char *mimetype;
+ const char *charset;
+ const char *filename;
+ const char *etag;
+ const char *title;
int status;
- char *statusmsg;
+ const char *statusmsg;
};
struct cgit_environment {
ctx.page.etag = sha1_to_hex(sha1);
cgit_print_http_headers(&ctx);
html_raw(buf, size);
+ /* If we allocated this, then casting away const is safe. */
if (freemime)
- free(ctx.page.mimetype);
+ free((char*) ctx.page.mimetype);
return 1;
}