]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
minor misc changes: update htp ver, add htp ver to --build-info, clean up
authorVictor Julien <victor@inliniac.net>
Fri, 9 Nov 2012 18:51:43 +0000 (19:51 +0100)
committerVictor Julien <victor@inliniac.net>
Fri, 9 Nov 2012 18:51:43 +0000 (19:51 +0100)
libhtp/configure.ac
libhtp/htp/htp.h
src/suricata.c

index a6827d11be462898db7cfeaa1107cab7aff7c27d..584e9b58ada0de060d88bd9666eadf08fbbcf6fb 100644 (file)
@@ -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
index 8e82b0dc8b4823a7c5fcb6fd672f2ab509ac376d..cb6ca4494b6cf7d0a996bbebed94d3bc594785bd 100644 (file)
@@ -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
index 92d52b86071605ae2b3495e5075d86413afbb89e..27399279c1662fbb5b5d24132c0020291fea4c93 100644 (file)
@@ -522,7 +522,7 @@ void usage(const char *progname)
     printf("\t--dag <dagX:Y>               : 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)