summaryrefslogtreecommitdiff
path: root/src/BLua.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/BLua.cc')
-rw-r--r--src/BLua.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/BLua.cc b/src/BLua.cc
index 22252d4..4b34108 100644
--- a/src/BLua.cc
+++ b/src/BLua.cc
@@ -440,11 +440,13 @@ void Balau::Lua::open_bit() {
extern "C" {
int luaopen_lcrypt(lua_State *L);
+extern const char * lcrypt_rsa;
}
void Balau::Lua::open_lcrypt() {
int n = gettop();
luaopen_lcrypt(L);
+ load(lcrypt_rsa);
while (n < gettop()) pop();
}