From 1feea438554d758acf16151e4f2100f2605ce7da Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 29 Dec 2015 23:51:59 +1100 Subject: [PATCH] Don't send proxy information in pasthrough mode --- src/generator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generator.c b/src/generator.c index 36cd2647..370f9b28 100644 --- a/src/generator.c +++ b/src/generator.c @@ -1053,6 +1053,8 @@ static void send_stratifier_deadproxy(ckpool_t *ckp, const int id, const int sub { char buf[256]; + if (ckp->passthrough) + return; sprintf(buf, "deadproxy=%d:%d", id, subid); send_proc(ckp->stratifier, buf); }