Changeset

7322:addf60d25356

net.dns: Import unpack() in forward-compatible way (Fixes compat with Lua5.2+)
author Kim Alvefur <zash@zash.se>
date Mon, 28 Mar 2016 19:56:12 +0200
parents 7321:a7199fc8a50e
children 7323:a1570219b865
files net/dns.lua
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/net/dns.lua	Mon Mar 28 13:27:42 2016 +0200
+++ b/net/dns.lua	Mon Mar 28 19:56:12 2016 +0200
@@ -22,8 +22,8 @@
 local coroutine, io, math, string, table =
       coroutine, io, math, string, table;
 
-local ipairs, next, pairs, print, setmetatable, tostring, assert, error, unpack, select, type=
-      ipairs, next, pairs, print, setmetatable, tostring, assert, error, unpack, select, type;
+local ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, unpack=
+      ipairs, next, pairs, print, setmetatable, tostring, assert, error, select, type, table.unpack or unpack;
 
 local ztact = { -- public domain 20080404 lua@ztact.com
 	get = function(parent, ...)