Removed unused config args.
authorplugd <plugd@thelambdalab.xyz>
Tue, 13 Aug 2024 19:40:38 +0000 (21:40 +0200)
committerplugd <plugd@thelambdalab.xyz>
Tue, 13 Aug 2024 19:40:38 +0000 (21:40 +0200)
qwikboard

index f48f32c..cfa8a12 100755 (executable)
--- 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)