diff options
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | clamav-listfiles-html.lsp | 4 | ||||
| -rw-r--r-- | clamav-model.lua | 4 | 
3 files changed, 5 insertions, 5 deletions
| @@ -8,7 +8,7 @@ APP_DIST=\  EXTRA_DIST=README Makefile config.mk -DISTFILES=$(APP_DIST) $(EXTRA_DIST)  +DISTFILES=$(APP_DIST) $(EXTRA_DIST)  TAR=tar diff --git a/clamav-listfiles-html.lsp b/clamav-listfiles-html.lsp index 2c7d384..fa0d4cd 100644 --- a/clamav-listfiles-html.lsp +++ b/clamav-listfiles-html.lsp @@ -1,4 +1,4 @@ -<% local data, viewlibrary, page_info, session = ...  +<% local data, viewlibrary, page_info, session = ...  htmlviewfunctions = require("htmlviewfunctions")  html = require("acf.html")  %> @@ -34,7 +34,7 @@ end %>  		<th>File</th>  		<th>Size</th>  		<th>Last Modified</th> -	</tr>		 +	</tr>  </thead><tbody>  <% local filename = cfe({ type="hidden", value="" }) %> diff --git a/clamav-model.lua b/clamav-model.lua index 370c4b3..4614b6d 100644 --- a/clamav-model.lua +++ b/clamav-model.lua @@ -20,7 +20,7 @@ local path = "PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin  -- PUBLIC FUNCTIONS  function mymodule.get_startstop(self, clientdata) -	return modelfunctions.get_startstop(processname)	 +	return modelfunctions.get_startstop(processname)  end  function mymodule.startstop_service(self, startstop, action) @@ -41,7 +41,7 @@ function mymodule.getfilelist()  	for i,name in ipairs(filelist) do  		local filedetails = posix.stat(name) or {}  		filedetails.filename = name -		table.insert(listed_files, filedetails)  +		table.insert(listed_files, filedetails)  	end  	return cfe({ type="structure", value=listed_files, label="ClamAV File List" }) | 
