aboutsummaryrefslogtreecommitdiffstats
path: root/src/openssl.c
diff options
context:
space:
mode:
authorLibravatarLibravatar william <william@25tandclement.com> 2014-03-22 22:02:11 -0700
committerLibravatarLibravatar william <william@25tandclement.com> 2014-03-22 22:02:11 -0700
commit4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f (patch)
tree73e10b55246f1c2d5b7c4962fd68cda9f54f1a02 /src/openssl.c
parent398d18ae35ceffcf0b89f6dc54d0fc023c1c1da8 (diff)
downloadluaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.tar.gz
luaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.tar.bz2
luaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.zip
fix include guard bug
Diffstat (limited to 'src/openssl.c')
-rw-r--r--src/openssl.c6
1 files 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 <limits.h> /* INT_MAX INT_MIN */
#include <string.h> /* memset(3) */
@@ -4079,4 +4079,4 @@ static void initall(lua_State *L) {
} /* initall() */
-#endif /* L_OPENSSL_H */
+#endif /* LUAOSSL_H */