From 2388e4ca24ffc04deee6c151d896ed7c64da7b36 Mon Sep 17 00:00:00 2001
From: Daniel Barlow <dan@telent.net>
Date: Wed, 15 Feb 2023 20:42:12 +0000
Subject: [PATCH] recvfrom(-1) is not the same as recvfrom()

---
 pkgs/tufted/tftp.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkgs/tufted/tftp.lua b/pkgs/tufted/tftp.lua
index 6cfdce164..b4787a038 100644
--- a/pkgs/tufted/tftp.lua
+++ b/pkgs/tufted/tftp.lua
@@ -320,7 +320,7 @@ function tftp:listen(rrq_generator_callback, wrq_generator_callback, hosts, port
             If the request is invalid, responds to the client with error and returns `nil`
             otherwise returns the parsed request.
         ]]
-        local msg, host, port = socket:recvfrom(-1)
+        local msg, host, port = socket:recvfrom()
         if msg ~= false then
             local okay, xRQ = pcall(self.parse_XRQ, msg)
             if not okay then