diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-10-24 14:46:22 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-10-24 14:46:22 +0100 |
commit | a8c4e8eb513148724cdaed020158e59b0e14b322 (patch) | |
tree | 96be4a2f459b71f1a0b8661a0d6f80330b8ec13b | |
parent | 652190787cac0e1d2cce9a6386f43b41c100ba45 (diff) | |
download | prosody-a8c4e8eb513148724cdaed020158e59b0e14b322.tar.gz prosody-a8c4e8eb513148724cdaed020158e59b0e14b322.zip |
Show error when no MD5 lib available
-rw-r--r-- | util/hashes.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/hashes.lua b/util/hashes.lua index 64374a8f..8273fcf9 100644 --- a/util/hashes.lua +++ b/util/hashes.lua @@ -1,5 +1,6 @@ local softreq = function (...) return select(2, pcall(require, ...)); end +local error = error; module "hashes" |