diff options
| author | Christian Hesse <mail@eworm.de> | 2015-10-09 13:15:50 +0200 | 
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2015-10-09 14:04:27 +0200 | 
| commit | f77e2a8cfaf07b25ddedd57348a1d957b048bbf5 (patch) | |
| tree | 3665e4bdb8f16401f43aeb309e9f8206ae2b2ded | |
| parent | 6f2e4400faebd829f905c824400f933fe07f5c30 (diff) | |
ui-shared: return value of cgit_hosturl is not const
Signed-off-by: Christian Hesse <mail@eworm.de>
| -rw-r--r-- | ui-shared.c | 6 | ||||
| -rw-r--r-- | ui-shared.h | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/ui-shared.c b/ui-shared.c index f6d38de..09c34fd 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -54,14 +54,14 @@ const char *cgit_httpscheme(void)  		return "http://";  } -const char *cgit_hosturl(void) +char *cgit_hosturl(void)  {  	if (ctx.env.http_host) -		return ctx.env.http_host; +		return xstrdup(ctx.env.http_host);  	if (!ctx.env.server_name)  		return NULL;  	if (!ctx.env.server_port || atoi(ctx.env.server_port) == 80) -		return ctx.env.server_name; +		return xstrdup(ctx.env.server_name);  	return fmtalloc("%s:%s", ctx.env.server_name, ctx.env.server_port);  } diff --git a/ui-shared.h b/ui-shared.h index 4121416..474e0c5 100644 --- a/ui-shared.h +++ b/ui-shared.h @@ -2,7 +2,7 @@  #define UI_SHARED_H  extern const char *cgit_httpscheme(); -extern const char *cgit_hosturl(); +extern char *cgit_hosturl();  extern const char *cgit_rooturl();  extern char *cgit_currenturl();  extern const char *cgit_loginurl(); | 
