From fc25beb70bd53dc989f150cfceaa74e2f6b85493 Mon Sep 17 00:00:00 2001 From: Max Lv Date: Fri, 13 Jun 2014 08:48:43 +0800 Subject: [PATCH] fix a typo --- src/local.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/local.c b/src/local.c index e82511c4..6e568bed 100644 --- a/src/local.c +++ b/src/local.c @@ -433,7 +433,7 @@ static void server_recv_cb (EV_P_ ev_io *w, int revents) } if ((acl && request->atyp == 1 && acl_contains_ip(host)) - || (acl && request->atyp = 3 && acl_contains_domain(host))) + || (acl && request->atyp == 3 && acl_contains_domain(host))) { remote = connect_to_remote(server->listener, host, port); remote->direct = 1;