diff options
author | Ted Trask <ttrask01@yahoo.com> | 2012-11-25 14:15:38 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2012-11-25 14:15:38 +0000 |
commit | 0b5914ae86262efd87a9ae38a0dfa9a33296fc27 (patch) | |
tree | be0b179b9867f8ea8a761b90f108297ae34b84fc /openssl-controller.lua | |
parent | 8d1ce4085b97497170a381d4d3695d87bacb3e3e (diff) | |
download | acf-openssl-0b5914ae86262efd87a9ae38a0dfa9a33296fc27.tar.bz2 acf-openssl-0b5914ae86262efd87a9ae38a0dfa9a33296fc27.tar.xz |
Cleaned up use of viewtype
Diffstat (limited to 'openssl-controller.lua')
-rw-r--r-- | openssl-controller.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/openssl-controller.lua b/openssl-controller.lua index 013d4b3..45efb71 100644 --- a/openssl-controller.lua +++ b/openssl-controller.lua @@ -82,7 +82,6 @@ end -- Get the specified cert getcert = function(self) - self.conf.viewtype="stream" return self.model.getcert(self.clientdata.cert) end @@ -108,7 +107,6 @@ end -- Get the revoked list getrevoked = function(self) - self.conf.viewtype="stream" return self.model.getcrl(self.clientdata.crltype) end @@ -118,7 +116,6 @@ putcacert = function(self) end downloadcacert = function(self) - self.conf.viewtype="stream" return self.model.getca(self.clientdata.certtype) end |