diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-16 14:33:33 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-16 16:18:31 +0100 |
commit | f2334aeb8704af14446f94a7e204a190f3e7a278 (patch) | |
tree | 3751bfbd0df123f303e5c2c43ba3a2bccb3ddfbc /utils | |
parent | d8e4c7024185f08f78b8755f757b63643ce2acd5 (diff) | |
download | rspamd-f2334aeb8704af14446f94a7e204a190f3e7a278.tar.gz rspamd-f2334aeb8704af14446f94a7e204a190f3e7a278.zip |
Fix variable name.
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/redirector.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/redirector.pl.in b/utils/redirector.pl.in index aa4178232..555006374 100755 --- a/utils/redirector.pl.in +++ b/utils/redirector.pl.in @@ -262,7 +262,7 @@ sub process_client { _log (LOG_INFO, "Max recursion exceeded: %d from %s to %s for request from: %s", $rec, $base_url, $http_request->uri, $heap->{remote_ip}); # Write to cache memcached_cache_url ($base_url, $http_request->uri); - my $new_response = create_response(200, $redirect); + my $new_response = create_response(200, $http_request->uri); # Avoid sending the response if the client has gone away. $heap->{client}->put($new_response) if defined $heap->{client}; |