diff -r 6da21a0bb018 -r 7693724881b3 mod_smacks/mod_smacks.lua --- a/mod_smacks/mod_smacks.lua Thu Feb 02 00:34:53 2012 +0000 +++ b/mod_smacks/mod_smacks.lua Thu Feb 02 02:08:40 2012 +0100 @@ -25,12 +25,12 @@ if session.smacks then return false, "unexpected-request", "Stream management is already enabled"; end local session_type = session.type; - if type == "c2s" then + if session_type == "c2s" then if not(advertise_only) and not(session.resource) then -- Fail unless we're only advertising sm return false, "unexpected-request", "Client must bind a resource before enabling stream management"; end return true; - elseif s2s_smacks and (type == "s2sin" or type == "s2sout") then + elseif s2s_smacks and (session_type == "s2sin" or session_type == "s2sout") then return true; end return false, "service-unavailable", "Stream management is not available for this stream";