aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-03-10 10:46:50 -0700
committerGerald Combs <gerald@wireshark.org>2015-03-10 19:30:50 +0000
commitcac102eee3db8d498b1e2d91ee2b49cfe4f531e4 (patch)
tree7c96252e392c297c813265f031ecf637bde7f623 /epan/wslua
parent7f61e90eebddb7244c66bf94c970a5fd44781cb2 (diff)
Change a lot of http:// URLs to https://.
Most of our sites are now HTTPS-only. Update URLs accordingly. Update other URLs while we're at it. Remove or comment out dead links. Change-Id: I7c4f323e6585d22760bb90bf28fc0faa6b893a33 Reviewed-on: https://code.wireshark.org/review/7621 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'epan/wslua')
-rw-r--r--epan/wslua/console.lua2
-rw-r--r--epan/wslua/template-init.lua2
-rw-r--r--epan/wslua/wslua_int64.c6
3 files changed, 5 insertions, 5 deletions
diff --git a/epan/wslua/console.lua b/epan/wslua/console.lua
index eeaf563c3d..eda8d6b09f 100644
--- a/epan/wslua/console.lua
+++ b/epan/wslua/console.lua
@@ -104,7 +104,7 @@ if (gui_enabled()) then
end
function wiki_page()
- browser_open_url("http://wiki.wireshark.org/Lua")
+ browser_open_url("https://wiki.wireshark.org/Lua")
end
register_menu("Lua/Evaluate", evaluate_lua, MENU_TOOLS_UNSORTED)
diff --git a/epan/wslua/template-init.lua b/epan/wslua/template-init.lua
index 0939e16fa6..91ed1d5504 100644
--- a/epan/wslua/template-init.lua
+++ b/epan/wslua/template-init.lua
@@ -37,7 +37,7 @@ run_user_scripts_when_superuser = false
-- disable potentialy harmful lua functions when running superuser
if running_superuser then
- local hint = "has been disabled due to running Wireshark as superuser. See http://wiki.wireshark.org/CaptureSetup/CapturePrivileges for help in running Wireshark as an unprivileged user."
+ local hint = "has been disabled due to running Wireshark as superuser. See https://wiki.wireshark.org/CaptureSetup/CapturePrivileges for help in running Wireshark as an unprivileged user."
local disabled_lib = {}
setmetatable(disabled_lib,{ __index = function() error("this package ".. hint) end } );
diff --git a/epan/wslua/wslua_int64.c b/epan/wslua/wslua_int64.c
index a4bea12243..c2e641d7b0 100644
--- a/epan/wslua/wslua_int64.c
+++ b/epan/wslua/wslua_int64.c
@@ -46,7 +46,7 @@ either expressed or implied, of the FreeBSD Project.
it is often set to IEEE 754 double precision floating point, one cannot store a 64 bit integer
with full precision.
- For details, see [[http://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see [[https://wiki.wireshark.org/LuaAPI/Int64]].
*/
#define LUATYPE64_STRING_SIZE 21 /* string to hold 18446744073709551615 */
@@ -56,7 +56,7 @@ WSLUA_CLASS_DEFINE_BASE(Int64,NOP,NOP,0);
/*
`Int64` represents a 64 bit signed integer.
- For details, see [[http://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see [[https://wiki.wireshark.org/LuaAPI/Int64]].
*/
/* A checkInt64 but that also auto-converts numbers, strings, and UINT64 to a gint64 */
@@ -607,7 +607,7 @@ LUALIB_API int Int64_register(lua_State* L) {
WSLUA_CLASS_DEFINE_BASE(UInt64,NOP,NOP,0);
/* `UInt64` represents a 64 bit unsigned integer, similar to `Int64`.
- For details, see: [[http://wiki.wireshark.org/LuaAPI/Int64]].
+ For details, see: [[https://wiki.wireshark.org/LuaAPI/Int64]].
*/
/* A checkUInt64 but that also auto-converts numbers, strings, and `Int64` to a guint64. */