Changeset

3063:ca149818083d

util.sasl_cyrus: Support for specifying the application name (to pass to Cyrus SASL's init())
author Matthew Wild <mwild1@gmail.com>
date Thu, 20 May 2010 11:13:51 +0100
parents 3062:892c49869293
children 3064:596303990c7c
files util/sasl_cyrus.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/util/sasl_cyrus.lua	Thu May 20 11:08:51 2010 +0100
+++ b/util/sasl_cyrus.lua	Thu May 20 11:13:51 2010 +0100
@@ -45,10 +45,10 @@
 end
 
 -- create a new SASL object which can be used to authenticate clients
-function new(realm, service_name)
+function new(realm, service_name, app_name)
 	local sasl_i = {};
 
-	init(service_name);
+	init(app_name or service_name);
 
 	sasl_i.realm = realm;
 	sasl_i.service_name = service_name;