From 45380cf202936ca00bd4322dcbcfd2d9ef7dacbe Mon Sep 17 00:00:00 2001 From: david Date: Fri, 14 Aug 2009 04:15:33 +0000 Subject: [PATCH] Put a HAVE_CONFIG_H guard around the inclusion of nmap_config.h in nse_nsock.h. --- nse_nsock.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nse_nsock.h b/nse_nsock.h index 754c0ce96..71a3f3d38 100644 --- a/nse_nsock.h +++ b/nse_nsock.h @@ -1,7 +1,9 @@ #ifndef NMAP_LUA_NSOCK_H #define NMAP_LUA_NSOCK_H +#ifdef HAVE_CONFIG_H #include "nmap_config.h" +#endif int luaopen_nsock(lua_State *); int l_nsock_new(lua_State *);