util/openssl.lua
changeset 12788 3b9de8dd71a3
parent 8385 e5d00bf4a4d5
child 12979 d10957394a3c
--- a/util/openssl.lua	Thu Oct 20 17:35:01 2022 +0200
+++ b/util/openssl.lua	Thu Oct 20 17:36:05 2022 +0200
@@ -166,8 +166,7 @@
 	setmetatable(_M, {
 		__index = function(_, command)
 			return function(opts)
-				local ret = os_execute(serialize(command, type(opts) == "table" and opts or {}));
-				return ret == true or ret == 0;
+				return os_execute(serialize(command, type(opts) == "table" and opts or {}));
 			end;
 		end;
 	});