From 4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f Mon Sep 17 00:00:00 2001 From: william Date: Sat, 22 Mar 2014 22:02:11 -0700 Subject: fix include guard bug --- src/openssl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openssl.c b/src/openssl.c index 64bbba4..1554053 100644 --- a/src/openssl.c +++ b/src/openssl.c @@ -23,8 +23,8 @@ * USE OR OTHER DEALINGS IN THE SOFTWARE. * ========================================================================== */ -#ifndef L_OPENSSL_H -#define L_OPENSSH_H +#ifndef LUAOSSL_H +#define LUAOSSL_H #include /* INT_MAX INT_MIN */ #include /* memset(3) */ @@ -4079,4 +4079,4 @@ static void initall(lua_State *L) { } /* initall() */ -#endif /* L_OPENSSL_H */ +#endif /* LUAOSSL_H */ -- cgit v1.2.3-59-g8ed1b