From 9f979b1b59882380dcaf82a88a47592511bcf205 Mon Sep 17 00:00:00 2001 From: plugd Date: Tue, 13 Aug 2024 21:40:38 +0200 Subject: [PATCH] Removed unused config args. --- qwikboard | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qwikboard b/qwikboard index f48f32c..cfa8a12 100755 --- a/qwikboard +++ b/qwikboard @@ -217,8 +217,8 @@ function qwk.write_message (target_dir) dofile(qb.path .. "/conferences/" .. cname .. ".msgs") for i,msg in ipairs(msgs) do pkt_msg_num = pkt_msg_num + 1 - qwk.write_message_header_block(mf, qb, cnum, pkt_msg_num, msg) - qwk.write_message_text(mf, qb, msg) + qwk.write_message_header_block(mf, cnum, pkt_msg_num, msg) + qwk.write_message_text(mf, msg) end end @@ -286,7 +286,7 @@ function qwk.import_rep(user_name, rep_filename) end while mf:read(0) do - qwk.process_reply(mf, qb, user_name) + qwk.process_reply(mf, user_name) end fs.rmdir(archive_dir, true) -- 2.20.1