From 3fa392bc0e4a19e107f83322f77b8cb055b67b9d Mon Sep 17 00:00:00 2001 From: Izaya Date: Wed, 4 Apr 2018 13:27:31 +1000 Subject: [PATCH] changed the queuePacket call --- KittenOS/apps/svc-minitel.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KittenOS/apps/svc-minitel.lua b/KittenOS/apps/svc-minitel.lua index f147603..99bc2ef 100644 --- a/KittenOS/apps/svc-minitel.lua +++ b/KittenOS/apps/svc-minitel.lua @@ -203,7 +203,7 @@ listeners["modem_message"]=processPacket event.listen("modem_message",processPacket) print("Started packet listening daemon: "..tostring(processPacket)) -local function queuePacket(_,ptype,to,vport,data,npID) +local function queuePacket(ptype,to,vport,data,npID) npID = npID or genPacketID() pqueue[npID] = {ptype,to,vport,data,0,0} dprint(npID,table.unpack(pqueue[npID]))