From 9d49fe82fd7f57b340004f6fc62dd4509e528931 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 6 Jan 2013 00:13:13 +0100 Subject: de-constify the url parameter for the handler, it becomes invalid after the request anyway --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index 0b06a33..7cc05d9 100644 --- a/lua.c +++ b/lua.c @@ -200,7 +200,7 @@ error: return NULL; } -static void lua_main(struct client *cl, struct path_info *pi, const char *url) +static void lua_main(struct client *cl, struct path_info *pi, char *url) { struct blob_attr *cur; const char *error; @@ -261,7 +261,7 @@ static void lua_main(struct client *cl, struct path_info *pi, const char *url) exit(0); } -static void lua_handle_request(struct client *cl, const char *url, struct path_info *pi) +static void lua_handle_request(struct client *cl, char *url, struct path_info *pi) { static struct path_info _pi; -- cgit v1.2.3