From: plugd Date: Tue, 13 Aug 2024 19:40:38 +0000 (+0200) Subject: Removed unused config args. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?a=commitdiff_plain;h=9f979b1b59882380dcaf82a88a47592511bcf205;p=qwikboard.git Removed unused config args. --- 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)