changeset 5013:a106477f1a65

mod_auth_imap: Remove unused variable [luacheck]
author Kim Alvefur <zash@zash.se>
date Wed, 24 Aug 2022 16:03:17 +0200
parents b97a2ffef87f
children eb3f99d0e72d
files mod_auth_imap/auth_imap/sasl_imap.lib.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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