diff options
author | Michael Adam <obnox@samba.org> | 2009-12-06 22:53:17 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2009-12-07 00:22:36 +0100 |
commit | 624d146cd6eefe1a6e6317f27a99f8c9521ab63d (patch) | |
tree | 837913dc52fe6aad2717a05ce05fcf6f42e1bcc2 /src/reverse-proxy.c | |
parent | 21aa3ecf60e5e6e54a9775876ae9e0eb6224e9cd (diff) | |
download | tinyproxy-624d146cd6eefe1a6e6317f27a99f8c9521ab63d.tar.gz tinyproxy-624d146cd6eefe1a6e6317f27a99f8c9521ab63d.zip |
Add reversepath_list parameter to reversepath_add.
Michael
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, |