1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/www/tinyproxy/files/patch-src__conf.c
2011-02-23 13:57:26 +00:00

14 lines
564 B
C

--- src/conf.c.orig 2011-02-09 11:55:12.000000000 -0800
+++ src/conf.c 2011-02-09 11:56:02.000000000 -0800
@@ -1046,8 +1046,8 @@
return -1;
port = (int) get_long_arg (line, &match[7]);
- if (match[9].rm_so != -1) {
- domain = get_string_arg (line, &match[9]);
+ if (match[10].rm_so != -1) {
+ domain = get_string_arg (line, &match[10]);
if (domain) {
upstream_add (ip, port, domain, &conf->upstream_list);
safefree (domain);