diff options
| author | william <william@25tandclement.com> | 2014-03-22 22:02:11 -0700 |
|---|---|---|
| committer | william <william@25tandclement.com> | 2014-03-22 22:02:11 -0700 |
| commit | 4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f (patch) | |
| tree | 73e10b55246f1c2d5b7c4962fd68cda9f54f1a02 | |
| parent | 398d18ae35ceffcf0b89f6dc54d0fc023c1c1da8 (diff) | |
| download | luaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.tar.gz luaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.tar.bz2 luaossl-4f07ddbd2e1ab71a6ae9e4c6a06a181e24dc653f.zip | |
fix include guard bug
| -rw-r--r-- | src/openssl.c | 6 |
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 @@ | |||
| 23 | * USE OR OTHER DEALINGS IN THE SOFTWARE. | 23 | * USE OR OTHER DEALINGS IN THE SOFTWARE. |
| 24 | * ========================================================================== | 24 | * ========================================================================== |
| 25 | */ | 25 | */ |
| 26 | #ifndef L_OPENSSL_H | 26 | #ifndef LUAOSSL_H |
| 27 | #define L_OPENSSH_H | 27 | #define LUAOSSL_H |
| 28 | 28 | ||
| 29 | #include <limits.h> /* INT_MAX INT_MIN */ | 29 | #include <limits.h> /* INT_MAX INT_MIN */ |
| 30 | #include <string.h> /* memset(3) */ | 30 | #include <string.h> /* memset(3) */ |
| @@ -4079,4 +4079,4 @@ static void initall(lua_State *L) { | |||
| 4079 | } /* initall() */ | 4079 | } /* initall() */ |
| 4080 | 4080 | ||
| 4081 | 4081 | ||
| 4082 | #endif /* L_OPENSSL_H */ | 4082 | #endif /* LUAOSSL_H */ |
