[svk-commit] r2115 - in trunk: lib/SVK

clkao at bestpractical.com clkao at bestpractical.com
Mon Nov 6 04:12:01 EST 2006


Author: clkao
Date: Mon Nov  6 04:12:01 2006
New Revision: 2115

Modified:
   trunk/   (props changed)
   trunk/lib/SVK/Path.pm

Log:
 r7231 at ubuntu:  clkao | 2006-11-06 06:24:07 +0000
 * Fix same_source logic.  (OMG this never worked)


Modified: trunk/lib/SVK/Path.pm
==============================================================================
--- trunk/lib/SVK/Path.pm	(original)
+++ trunk/lib/SVK/Path.pm	Mon Nov  6 04:12:01 2006
@@ -99,7 +99,7 @@
     for (@other) {
 	my $m = $_->is_mirrored;
 	return 0 if $m xor $mself;
-	return 0 if $m && $m->path ne $m->path;
+	return 0 if $m && $mself->path ne $m->path;
     }
     return 1;
 }


More information about the svk-commit mailing list