From: Victor Julien Date: Fri, 9 Nov 2012 18:51:43 +0000 (+0100) Subject: minor misc changes: update htp ver, add htp ver to --build-info, clean up X-Git-Tag: suricata-1.4beta3~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5a6c8c0f011be83c2b4821478f30120cf954f970;p=thirdparty%2Fsuricata.git minor misc changes: update htp ver, add htp ver to --build-info, clean up --- diff --git a/libhtp/configure.ac b/libhtp/configure.ac index a6827d11be..584e9b58ad 100644 --- a/libhtp/configure.ac +++ b/libhtp/configure.ac @@ -15,7 +15,7 @@ GENERIC_LIBRARY_NAME=htp GENERIC_MAJOR_VERSION=0 GENERIC_MINOR_VERSION=2 -GENERIC_MICRO_VERSION=9 +GENERIC_MICRO_VERSION=10 # API version (often = GENERIC_MAJOR_VERSION.GENERIC_MINOR_VERSION) GENERIC_API_VERSION=1.0 diff --git a/libhtp/htp/htp.h b/libhtp/htp/htp.h index 8e82b0dc8b..cb6ca4494b 100644 --- a/libhtp/htp/htp.h +++ b/libhtp/htp/htp.h @@ -41,7 +41,7 @@ typedef struct htp_urldecoder_t htp_urldecoder_t; // -- Defines ------------------------------------------------------------------------------------- -#define HTP_BASE_VERSION_TEXT "0.2.9" +#define HTP_BASE_VERSION_TEXT "0.2.10" #define HTP_ERROR -1 #define HTP_OK 0 diff --git a/src/suricata.c b/src/suricata.c index 92d52b8607..27399279c1 100644 --- a/src/suricata.c +++ b/src/suricata.c @@ -522,7 +522,7 @@ void usage(const char *progname) printf("\t--dag : process ERF records from DAG interface X, stream Y\n"); #endif #ifdef HAVE_NAPATECH - printf("\t--napatech : run Napatech Streams using the API\n"); + printf("\t--napatech : run Napatech Streams using the API\n"); #endif printf("\n"); printf("\nTo run the engine with default configuration on " @@ -656,6 +656,8 @@ void SCPrintBuildInfo(void) { #ifdef _FORTIFY_SOURCE SCLogInfo("compiled with _FORTIFY_SOURCE=%d", _FORTIFY_SOURCE); #endif + + SCLogInfo("compiled with libhtp %s, linked against %s", HTP_BASE_VERSION_TEXT, htp_get_version()); } int main(int argc, char **argv)