summaryrefslogtreecommitdiffstats
path: root/lib/evendoors/twirl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/evendoors/twirl.rb')
-rw-r--r--lib/evendoors/twirl.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/evendoors/twirl.rb b/lib/evendoors/twirl.rb
index 9f38bf6..b3eca89 100644
--- a/lib/evendoors/twirl.rb
+++ b/lib/evendoors/twirl.rb
@@ -46,11 +46,11 @@ module EvenDoors
while @run and (@sys_fifo.length>0 or @app_fifo.length>0)
while @run and @sys_fifo.length>0
p = @sys_fifo.shift
- p.door.process_sys_p p
+ p.dst.process_sys_p p
end
while @run and @app_fifo.length>0
p = @app_fifo.shift
- p.door.process_p p
+ p.dst.process_p p
break
end
end