2013-11-02 12:44:30 +00:00
|
|
|
From 9d38601b45c6bce770946ac3c36a675a2f1a4359 Mon Sep 17 00:00:00 2001
|
2013-09-10 10:16:03 +00:00
|
|
|
From: =?UTF-8?q?Radek=20Vok=C3=A1l?= <rvokal@fedoraproject.org>
|
|
|
|
Date: Tue, 15 Dec 2009 08:36:27 +0000
|
2013-11-02 12:44:30 +00:00
|
|
|
Subject: [PATCH 01/13] enable Lua support
|
2013-09-10 10:16:03 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
epan/wslua/template-init.lua | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
2013-06-17 13:19:18 +00:00
|
|
|
diff --git a/epan/wslua/template-init.lua b/epan/wslua/template-init.lua
|
2013-09-10 10:16:03 +00:00
|
|
|
index e6ec4ae..2538c4c 100644
|
2013-06-17 13:19:18 +00:00
|
|
|
--- a/epan/wslua/template-init.lua
|
|
|
|
+++ b/epan/wslua/template-init.lua
|
|
|
|
@@ -43,7 +43,7 @@ if running_superuser then
|
2009-12-15 08:36:27 +00:00
|
|
|
local disabled_lib = {}
|
2013-06-17 13:19:18 +00:00
|
|
|
setmetatable(disabled_lib,{ __index = function() error("this package ".. hint) end } );
|
2009-12-15 08:36:27 +00:00
|
|
|
|
2013-06-17 13:19:18 +00:00
|
|
|
- dofile = function() error("dofile " .. hint) end
|
|
|
|
+-- dofile = function() error("dofile " .. hint) end
|
|
|
|
loadfile = function() error("loadfile " .. hint) end
|
|
|
|
loadlib = function() error("loadlib " .. hint) end
|
|
|
|
require = function() error("require " .. hint) end
|
2013-09-10 10:16:03 +00:00
|
|
|
--
|
|
|
|
1.8.3.1
|
|
|
|
|