From 3b98769e8d16c02b8e6ae8d992f32ffefeaa792f Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 6 Feb 2012 14:33:54 -0500 Subject: [PATCH] Fix stupid test-direction-problem in cname expansion --- proxy.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy.rkt b/proxy.rkt index 1682134..036f3d1 100644 --- a/proxy.rkt +++ b/proxy.rkt @@ -213,7 +213,7 @@ (define new-w (expanding-cnames q new-acc new-remaining)) (transition new-w (unsubscribe subscription-id) - (if (positive? new-remaining) + (if (zero? new-remaining) (send-message (answered-question q new-acc)) '()))])))) cnames))])]))