The patch number 7863 was added via Mauro Carvalho Chehab <[EMAIL PROTECTED]>
to http://linuxtv.org/hg/v4l-dvb master development tree.

Kernel patches in this development tree may be modified to be backward
compatible with older kernels. Compatibility modifications will be
removed before inclusion into the mainstream Kernel

If anyone has any objections, please let us know by sending a message to:
        [EMAIL PROTECTED]

------

From: Mauro Carvalho Chehab  <[EMAIL PROTECTED]>
hghead.pl: Fix script to avoid parsing errors


Driver were searching for "Index" on any part of the text, causing troubles
when committing a few patches.

Signed-off-by: Mauro Carvalho Chehab <[EMAIL PROTECTED]>


---

 v4l/scripts/hghead.pl |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -r 843374050e3e -r c35180b8d9cf v4l/scripts/hghead.pl
--- a/v4l/scripts/hghead.pl     Thu May 01 00:57:01 2008 -0400
+++ b/v4l/scripts/hghead.pl     Thu May 08 09:13:23 2008 -0300
@@ -25,7 +25,7 @@ open IN,  "<$in";
 open IN,  "<$in";
 
 while ($line = <IN>) {
-       if ($line =~ m/Index.*/) {
+       if ($line =~ m/^\s*Index.*/) {
                last;
        }
        if ($line =~ m/^diff .*/) {


---

Patch is available at: 
http://linuxtv.org/hg/v4l-dvb/rev/c35180b8d9cf7236ee9c28e7ac2ab206a72f29b9

_______________________________________________
linuxtv-commits mailing list
linuxtv-commits@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to