hoover icon indicating copy to clipboard operation
hoover copied to clipboard

localtime missing tiny piece of code

Open cybernout opened this issue 9 years ago • 0 comments

nice code, please add tiny bit of code, because the time did not come out right , add (); in line 181

my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();($detectedSSID{$key}[2]);

i also got this lua error -- tshark: Lua: Error during loading: [string "/usr/share/wireshark/init.lua"]:44: dofile 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. ---

cd /usr/share/wireshark , nano init.lua , and comment out the

dofile = function() error("dofile has been disabled") end

to

-- dofile = function() error("dofile has been disabled") end

dont know if its the right way, but that gets rid of the error.

cybernout avatar Jun 19 '16 19:06 cybernout