]> git.ipfire.org Git - thirdparty/snort3.git/commitdiff
build 191
authorRuss Combs <rucombs@cisco.com>
Mon, 7 Mar 2016 23:44:51 +0000 (18:44 -0500)
committerRuss Combs <rucombs@cisco.com>
Mon, 7 Mar 2016 23:44:51 +0000 (18:44 -0500)
ChangeLog
doc/online_manual.sh
src/main/build.h

index 18cebe2dbc67124d3261b04ce56e81ac0605d1ef..011581aa6e4f08fcccc868f80dcd63fe355043e1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+16/03/07 - build 191
+
+-- fix perf_monitor stats output at shutdown
+-- initial port of sensitive data as a rule option
+-- fix doc/online_manual.sh for linux
+
 16/03/04 - build 190
 
 -- fix console close and remote control disconnect issues
index 74745965fa06a64f4184088476f539bd49bccb33..393197cfa44387037e429454ebc58b72133233f1 100755 (executable)
@@ -46,7 +46,7 @@ cp ../*.{txt,png} ./
 
 # create a list of 'txt png' pairs
 grep -o 'image::.*.png' *.txt > $data
-sed -i .sed -e " s/:image::/ /" $data
+sed -i.sed -e " s/:image::/ /" $data
 
 # preprocess
 cat $data | while read txt png ; do
@@ -55,13 +55,17 @@ cat $data | while read txt png ; do
     #echo "preprocess $txt $png $pfx $img $b64"
 
     # get the raw base64 data file
-    base64 -b 80 -i $png -o $b64
+    # different options on osx linux :(
+    opt="w"
+    base64 --help | grep -q "\-b" && opt="b"
+
+    base64 -$opt 80 < $png > $b64
 
     # put this stub image tag into an include file
     make_img $pfx $img
 
     # make a version of the source that includes the above file
-    sed -i .sed -e " s/^image::$png.*/include::$img[]/" $txt
+    sed -i.sed -e " s/^image::$png.*/include::$img[]/" $txt
 done
 
 # generate the toc2 html with stub tag
index ec8a980eb77af73c7ad775f7d21287c5c2a1dbd6..b9894b48a4dd1fa96a5c1dcc9311fcdf5e1157db 100644 (file)
@@ -10,7 +10,7 @@
 //                                               //
 //-----------------------------------------------//
 
-#define BUILD "190"
+#define BUILD "191"
 
 #endif