diff options
author | onefang | 2019-12-25 18:45:53 +1000 |
---|---|---|
committer | onefang | 2019-12-25 18:45:53 +1000 |
commit | 09f41b9003df75e26c64a471d9cb82ec6a937a34 (patch) | |
tree | 908adeaab5dd84489096ded27dc6d6fbb39eeb8e | |
parent | Add a little descritpion to the web page. (diff) | |
download | apt-panopticon-09f41b9003df75e26c64a471d9cb82ec6a937a34.zip apt-panopticon-09f41b9003df75e26c64a471d9cb82ec6a937a34.tar.gz apt-panopticon-09f41b9003df75e26c64a471d9cb82ec6a937a34.tar.bz2 apt-panopticon-09f41b9003df75e26c64a471d9cb82ec6a937a34.tar.xz |
Missed a return false from logOpen()
-rw-r--r-- | apt-panopticommon.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-panopticommon.lua b/apt-panopticommon.lua index ea6346e..e73e69e 100644 --- a/apt-panopticommon.lua +++ b/apt-panopticommon.lua | |||
@@ -334,6 +334,8 @@ APT.logOpen = function(host, a2, a3) | |||
334 | APT.logFile:write("<pre>\n") | 334 | APT.logFile:write("<pre>\n") |
335 | APT.logFile:write(APT.dumpTable(APT.args, '', 'Arguments')) | 335 | APT.logFile:write(APT.dumpTable(APT.args, '', 'Arguments')) |
336 | APT.logFile:write("</pre>\n") | 336 | APT.logFile:write("</pre>\n") |
337 | else | ||
338 | return false | ||
337 | end | 339 | end |
338 | return true | 340 | return true |
339 | end | 341 | end |