changeset 595:7693724881b3

Fix a typo in mod_smacks (type -> session_type).
author Thijs Alkemade <thijsalkemade@gmail.com>
date Thu, 02 Feb 2012 02:08:40 +0100
parents 6da21a0bb018
children b1d82ae063e1 072b05999b4b
files mod_smacks/mod_smacks.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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";