Mercurial > prosody-modules
comparison mod_auth_dovecot/mod_auth_dovecot.lua @ 339:5aa8229e8815
mod_auth_dovecot: Add line missing from previous commit.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 13 Feb 2011 23:30:11 +0100 |
parents | 6560fd0b77f5 |
children | 5d306466f3f6 |
comparison
equal
deleted
inserted
replaced
338:6560fd0b77f5 | 339:5aa8229e8815 |
---|---|
57 return false | 57 return false |
58 end | 58 end |
59 | 59 |
60 -- Parse Dovecot's handshake | 60 -- Parse Dovecot's handshake |
61 local done = false; | 61 local done = false; |
62 local supported_mechs = {}; | |
62 while (not done) do | 63 while (not done) do |
63 local line = provider:receive(); | 64 local line = provider:receive(); |
64 if not line then | 65 if not line then |
65 return false; | 66 return false; |
66 end | 67 end |