From a204f5abc89ae5faa9c1875b3fe9acba34bc1c5d Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Sun, 2 Nov 2008 01:19:23 +0000 Subject: [PATCH] Fix MD5 loading check --- util/hashes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/hashes.lua b/util/hashes.lua index 8273fcf9..5ed9d3ac 100644 --- a/util/hashes.lua +++ b/util/hashes.lua @@ -23,6 +23,8 @@ if md5 then else error("md5 library found, but unrecognised... no hash functions will be available", 0); end +else + error("No md5 library found. Install md5 using luarocks, for example", 0); end return _M; -- 2.30.2