We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40695b4 commit 21eb198Copy full SHA for 21eb198
1 file changed
src/lua/cURL/impl/cURL.lua
@@ -586,7 +586,7 @@ function Multi:info_read(...)
586
end
587
588
589
-function wrap_callback(...)
+local function wrap_callback(...)
590
local n = select("#", ...)
591
local fn, ctx, has_ctx
592
if n >= 2 then
@@ -603,7 +603,7 @@ function wrap_callback(...)
603
return function(...) return fn(...) end
604
605
606
-function wrap_socketfunction(self, cb)
+local function wrap_socketfunction(self, cb)
607
return function(h, ...)
608
local e = self._easy[h]
609
if e then return cb(e, ...) end
0 commit comments