# HG changeset patch # User Paul Aurich # Date 1268719336 25200 # Node ID 4e6c6b1ddce73afc8eeb732e4f5dda9684987214 # Parent a3f6cc3417f27951c5925e4f7f36214619a9e0d8 util.cyrus_sasl: Pass the realm to Cyrus diff -r a3f6cc3417f2 -r 4e6c6b1ddce7 util/sasl_cyrus.lua --- a/util/sasl_cyrus.lua Wed Mar 17 03:16:43 2010 +0500 +++ b/util/sasl_cyrus.lua Mon Mar 15 23:02:16 2010 -0700 @@ -52,7 +52,7 @@ sasl_i.realm = realm; sasl_i.service_name = service_name; - sasl_i.cyrus = cyrussasl.server_new(service_name, nil, nil, nil, nil) + sasl_i.cyrus = cyrussasl.server_new(service_name, nil, realm, nil, nil) if sasl_i.cyrus == 0 then log("error", "got NULL return value from server_new") return nil;