1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

[rewrite] const in rewrite_uri

This commit is contained in:
Witold Filipczyk 2022-02-21 17:36:39 +01:00
parent b1d2f48f16
commit 47364e12f2

View File

@ -204,10 +204,10 @@ get_prefix_tree(enum uri_rewrite_option tree)
#define MAX_URI_ARGS 10
static char *
rewrite_uri(char *url, struct uri *current_uri, char *arg)
rewrite_uri(char *url, struct uri *current_uri, const char *arg)
{
struct string n = NULL_STRING;
char *args[MAX_URI_ARGS];
const char *args[MAX_URI_ARGS];
int argslen[MAX_URI_ARGS];
int argc = 0;
int i;
@ -297,7 +297,7 @@ goto_url_hook(va_list ap, void *data)
char **url = va_arg(ap, char **);
struct session *ses = va_arg(ap, struct session *);
char *uu = NULL;
char *arg = "";
const char *arg = "";
char *argstart = *url + strcspn(*url, " :");
if (get_smart_enable() && *argstart) {