diff options
author | Ralph Amissah <ralph@amissah.com> | 2014-10-12 10:17:16 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2014-10-12 10:17:16 -0400 |
commit | 2f0c9ef183a982d0923cc79ed743574670a7bc87 (patch) | |
tree | c2f2a247a28cece328a0fc3386707bea8c299158 /lib | |
parent | v5 v6: version & changelog (diff) |
v5 v6: qrcode, sha call, fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sisu/v5/qrcode.rb | 2 | ||||
-rw-r--r-- | lib/sisu/v6/qrcode.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/sisu/v5/qrcode.rb b/lib/sisu/v5/qrcode.rb index 1f3f7ca8..04d91a5e 100644 --- a/lib/sisu/v5/qrcode.rb +++ b/lib/sisu/v5/qrcode.rb @@ -180,7 +180,7 @@ WOK sys=SiSU_Env::SystemCall.new dgst=case @dg when :sha512 - (sys.sha516("#{pth}/#{file}")) #check + (sys.sha512("#{pth}/#{file}")) #check when :md5 (sys.md5("#{pth}/#{file}")) else diff --git a/lib/sisu/v6/qrcode.rb b/lib/sisu/v6/qrcode.rb index b4a84f22..d734ed72 100644 --- a/lib/sisu/v6/qrcode.rb +++ b/lib/sisu/v6/qrcode.rb @@ -180,7 +180,7 @@ WOK sys=SiSU_Env::SystemCall.new dgst=case @dg when :sha512 - (sys.sha516("#{pth}/#{file}")) #check + (sys.sha512("#{pth}/#{file}")) #check when :md5 (sys.md5("#{pth}/#{file}")) else |