From: Eric S. Raymond <esr@thyrsus.com>
Date: Tue, 3 Dec 2013 22:41:09 +0000 (-0500)
Subject: Supply a missing parameter.
X-Git-Tag: 2.4~3
X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3e4245c66e1ec911b82706c6e5c0579868b6664a;p=irker.git

Supply a missing parameter.
---

diff --git a/irkerd b/irkerd
index 024a446..634c569 100755
--- a/irkerd
+++ b/irkerd
@@ -638,7 +638,7 @@ class Dispatcher:
         eligibles = [x for x in connections if x.joined_to(channel)] \
                     or [x for x in connections if x.accepting(channel)]
         if eligibles:
-            eligibles[0].enqueue(channel, message, key)
+            eligibles[0].enqueue(channel, message, key, quit_after)
             return
         # All connections are full up. Look for one old enough to be
         # scavenged.