diff options
Diffstat (limited to 'src/reverse-proxy.c')
-rw-r--r-- | src/reverse-proxy.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/reverse-proxy.c b/src/reverse-proxy.c index 7346fc4..126b957 100644 --- a/src/reverse-proxy.c +++ b/src/reverse-proxy.c @@ -29,7 +29,8 @@ /* * Add entry to the reversepath list */ -void reversepath_add (const char *path, const char *url) +void reversepath_add (const char *path, const char *url, + struct reversepath **reversepath_list) { struct reversepath *reverse; @@ -68,8 +69,8 @@ void reversepath_add (const char *path, const char *url) reverse->url = safestrdup (url); - reverse->next = config.reversepath_list; - config.reversepath_list = reverse; + reverse->next = *reversepath_list; + *reversepath_list = reverse; log_message (LOG_INFO, "Added reverse proxy rule: %s -> %s", reverse->path, |