The return values of these functions are essentially constant and should
never be modified.
Note that this will introduce a compiler warning when we try to free the
return value of any of these functions. However, given that all of these
currently return statically allocated strings in some cases, they need
to be refactored before this can be done anyway.
Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de>
#include "html.h"
#include "ui-shared.h"
#include "html.h"
#include "ui-shared.h"
-static void add_entry(struct commit *commit, char *host)
+static void add_entry(struct commit *commit, const char *host)
{
char delim = '&';
char *hex;
{
char delim = '&';
char *hex;
void cgit_print_atom(char *tip, char *path, int max_count)
{
void cgit_print_atom(char *tip, char *path, int max_count)
{
const char *argv[] = {NULL, tip, NULL, NULL, NULL};
struct commit *commit;
struct rev_info rev;
const char *argv[] = {NULL, tip, NULL, NULL, NULL};
struct commit *commit;
struct rev_info rev;
+const char *cgit_httpscheme()
{
if (ctx.env.https && !strcmp(ctx.env.https, "on"))
return "https://";
{
if (ctx.env.https && !strcmp(ctx.env.https, "on"))
return "https://";
+const char *cgit_hosturl()
{
if (ctx.env.http_host)
return ctx.env.http_host;
{
if (ctx.env.http_host)
return ctx.env.http_host;
return xstrdup(fmt("%s:%s", ctx.env.server_name, ctx.env.server_port));
}
return xstrdup(fmt("%s:%s", ctx.env.server_name, ctx.env.server_port));
}
+const char *cgit_rooturl()
{
if (ctx.cfg.virtual_root)
return fmt("%s/", ctx.cfg.virtual_root);
{
if (ctx.cfg.virtual_root)
return fmt("%s/", ctx.cfg.virtual_root);
- char *host = cgit_hosturl();
+ const char *host = cgit_hosturl();
html(cgit_doctype);
html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
html("<head>\n");
html(cgit_doctype);
html("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>\n");
html("<head>\n");
#ifndef UI_SHARED_H
#define UI_SHARED_H
#ifndef UI_SHARED_H
#define UI_SHARED_H
-extern char *cgit_httpscheme();
-extern char *cgit_hosturl();
-extern char *cgit_rooturl();
+extern const char *cgit_httpscheme();
+extern const char *cgit_hosturl();
+extern const char *cgit_rooturl();
extern char *cgit_repourl(const char *reponame);
extern char *cgit_fileurl(const char *reponame, const char *pagename,
const char *filename, const char *query);
extern char *cgit_repourl(const char *reponame);
extern char *cgit_fileurl(const char *reponame, const char *pagename,
const char *filename, const char *query);