You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Schaefer <jo...@yahoo.com> on 2011/04/17 15:27:33 UTC

[PATCH] check_forensic re tweak

With mod_unique_id installed there's the possibility
of having a - in the forensic id, so here's a minor
patch to ensure check_forensic does the right thing.

Index: support/check_forensic
===================================================================
--- support/check_forensic    (revision 1094142)
+++ support/check_forensic    (working copy)
@@ -43,8 +43,8 @@
 trap "rm -f -- \"$all\" \"$in\" \"$out\";" 0 1 2 3 13 15
 
 cut -f 1 -d '|' $F  > $all
-grep + < $all | cut -c2- | sort > $in
-grep -- - < $all | cut -c2- | sort > $out
+grep ^+ < $all | cut -c2- | sort > $in
+grep -- ^- < $all | cut -c2- | sort > $out
 
 # use -i instead of -I for GNU xargs
 join -v 1 $in $out | xargs -I xx egrep "^\\+xx" $F

Re: [PATCH] check_forensic re tweak

Posted by Igor Galić <i....@brainsware.org>.

----- Original Message -----
> With mod_unique_id installed there's the possibility
> of having a - in the forensic id, so here's a minor
> patch to ensure check_forensic does the right thing.
> 
> Index: support/check_forensic
> ===================================================================
> --- support/check_forensic    (revision 1094142)
> +++ support/check_forensic    (working copy)
> @@ -43,8 +43,8 @@
>  trap "rm -f -- \"$all\" \"$in\" \"$out\";" 0 1 2 3 13 15
>  
>  cut -f 1 -d '|' $F  > $all
> -grep + < $all | cut -c2- | sort > $in
> -grep -- - < $all | cut -c2- | sort > $out
> +grep ^+ < $all | cut -c2- | sort > $in
> +grep -- ^- < $all | cut -c2- | sort > $out
>  
>  # use -i instead of -I for GNU xargs
>  join -v 1 $in $out | xargs -I xx egrep "^\\+xx" $F


Thanks joe - applied in  r1096775

i

-- 
Igor Galić

Tel: +43 (0) 664 886 22 883
Mail: i.galic@brainsware.org
URL: http://brainsware.org/