2010-12-01 Ramon Novoa <rnovoa@artica.es>
* plugins/pandora_update: Fixed md5 calculation. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3647 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
b12d4b99f8
commit
0edf5e76a5
|
@ -1,3 +1,7 @@
|
|||
2010-12-01 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* plugins/pandora_update: Fixed md5 calculation.
|
||||
|
||||
2010-11-29 Ramon Novoa <rnovoa@artica.es>
|
||||
|
||||
* pandora_agent_installer: Remove all init symbolic links.
|
||||
|
|
|
@ -65,13 +65,13 @@ sub compare_twofiles ($$) {
|
|||
|
||||
open FILE1, $file1;
|
||||
binmode FILE1;
|
||||
my $data1 = <FILE1>;
|
||||
my $data1 = join ('', <FILE1>);
|
||||
close FILE1;
|
||||
my $hash1 = md5($data1);
|
||||
|
||||
open FILE2, $file2;
|
||||
binmode FILE2;
|
||||
my $data2 = <FILE2>;
|
||||
my $data2 = join ('', <FILE2>);
|
||||
close FILE2;
|
||||
my $hash2 = md5($data2);
|
||||
|
||||
|
|
Loading…
Reference in New Issue