mod_auth_imap: Remove unused variable [luacheck]
authorKim Alvefur <zash@zash.se>
Wed, 24 Aug 2022 16:03:17 +0200
changeset 5017 a106477f1a65
parent 5016 b97a2ffef87f
child 5018 eb3f99d0e72d
mod_auth_imap: Remove unused variable [luacheck]
mod_auth_imap/auth_imap/sasl_imap.lib.lua
--- a/mod_auth_imap/auth_imap/sasl_imap.lib.lua	Wed Aug 24 16:02:00 2022 +0200
+++ b/mod_auth_imap/auth_imap/sasl_imap.lib.lua	Wed Aug 24 16:03:17 2022 +0200
@@ -195,7 +195,7 @@
 	log("debug", "Received %d bytes from socket: %s", #line, line);
 
 	while line and line:match("^%* ") do
-		line, err = self.conn:receive("*l");
+		line = self.conn:receive("*l");
 	end
 
 	if line:match("^%+") and #line > 2 then