Browse Source

fix; had a duplicate method name

git-svn-id: svn://bind10.isc.org/svn/bind10/branches/parkinglot@313 e5f2f494-b856-4b98-b285-d166d9295462
Michael Graff 15 years ago
parent
commit
ae6b4206d3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/lib/cc/ruby/lib/cc/session.rb

+ 2 - 2
src/lib/cc/ruby/lib/cc/session.rb

@@ -127,7 +127,7 @@ class Session
     seq
   end
 
-  def group_sendmsg(routing, msg)
+  def group_replymsg(routing, msg)
     seq = next_sequence
     sendmsg({ :type => "send",
               :from => @lname,
@@ -135,7 +135,7 @@ class Session
               :group => routing["group"],
               :instance => routing["instance"],
               :seq => seq,
-              :reply => fouring["seq"],
+              :reply => routing["seq"],
               :msg => CC::Message.to_wire(msg),
             })
     seq