Fixed compilation when --without-liblua is specified

This commit is contained in:
fyodor 2013-11-10 02:04:17 +00:00
parent fbf03995e0
commit 65309b5c20
2 changed files with 6 additions and 0 deletions

View file

@ -1,5 +1,8 @@
# Nmap Changelog ($Id$); -*-text-*-
o [Ncat] Fixed compilation when --without-liblua is specified in
configure (an #include needed an ifdef guard). [Quentin Glidic]
o [NSE] Add http-server-header script to grab the Server header as a last-ditch
effort to get a software version. This can't be done as a softmatch because
of the need to match non-HTTP services that obey some HTTP requests. [Daniel

View file

@ -122,7 +122,10 @@
/* $Id$ */
#include "ncat.h"
#ifdef HAVE_LUA
#include "ncat_lua.h"
#endif
char **cmdline_split(const char *cmdexec);