summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Radestock <matthias@rabbitmq.com>2010-07-01 10:43:59 +0100
committerMatthias Radestock <matthias@rabbitmq.com>2010-07-01 10:43:59 +0100
commit149b528f306664dbce5de3f46a06ee49b9a7f4cb (patch)
tree850f369bfd3848efba7410ae2e550f86f2546522
parenteecf51debb0f660384b97f86bfd03354a2e476e6 (diff)
downloadrabbitmq-server-git-149b528f306664dbce5de3f46a06ee49b9a7f4cb.tar.gz
recurse with the correct value
not that it matters
-rw-r--r--src/rabbit_channel.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_channel.erl b/src/rabbit_channel.erl
index e16cb2de60..1d91494bc0 100644
--- a/src/rabbit_channel.erl
+++ b/src/rabbit_channel.erl
@@ -753,7 +753,7 @@ handle_method(#'queue.declare'{queue = QueueNameBin,
{existing, _Q} ->
%% must have been created between the stat and the
%% declare. Loop around again.
- handle_method(Declare, undefined, State)
+ handle_method(Declare, none, State)
end
end;