The branch, master has been updated
       via  8e6f673 selftest/Subunit.pm: fix perl warnings
      from  6752270 s3: Those functions are no macros anymore :-)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 8e6f67392998d09073aa04932a4c838e264a56ce
Author: Stefan Metzmacher <me...@samba.org>
Date:   Sat Aug 28 09:42:10 2010 +0200

    selftest/Subunit.pm: fix perl warnings
    
    Argument "\n" isn't numeric in numeric ne (!=) at selftest/Subunit.pm line 
136
    
    metze

-----------------------------------------------------------------------

Summary of changes:
 selftest/Subunit.pm |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/selftest/Subunit.pm b/selftest/Subunit.pm
index d5c8277..7a352bd 100644
--- a/selftest/Subunit.pm
+++ b/selftest/Subunit.pm
@@ -133,7 +133,7 @@ sub end_test($$;$)
        if ($reason) {
                print "$result: $name [\n";
                print $reason;
-               if (substr($reason, -1, 1) != "\n") { print "\n"; }
+               if (substr($reason, -1, 1) ne "\n") { print "\n"; }
                print "]\n";
        } else {
                print "$result: $name\n";


-- 
Samba Shared Repository

Reply via email to