yangtse: curl-www/auto update.pl,1.5,1.6

[email protected] Sun, 04 Oct 2009 01:29:01 +0000
Newsgroups gmane.comp.web.curl.www.cvs
Message-ID <[email protected]>
Update of /cvsroot/curl/curl-www/auto
In directory giant.haxx.se:/var/tmp/cvs-serv18009

Modified Files:
	update.pl 
Log Message:

Adjust regular expression to make it work no matter if md5sum output
indicates that the daily build log file is a binary file or not.


Index: update.pl
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/update.pl,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- update.pl	1 Oct 2009 13:25:35 -0000	1.5
+++ update.pl	4 Oct 2009 01:28:59 -0000	1.6
@@ -8,7 +8,7 @@
 
 if(open(MD5, "<md5")) {
     while(<MD5>) {
-        if(/([^ ]*)  .*\/(.*)/) {
+        if(/([^ ]*) .*\/(.*)/) {
             $logfile{$2}="c";
         }
     }