Index: libs/ardour/route.cc
===================================================================
--- libs/ardour/route.cc	(revision 7755)
+++ libs/ardour/route.cc	(working copy)
@@ -931,6 +931,7 @@
 
 		XMLNodeList const & children = node.children ();
 		XMLNodeList::const_iterator i = children.begin ();
+		
 		while (i != children.end() && (*i)->name() != X_("Redirect")) {
 			++i;
 		}
@@ -938,7 +939,7 @@
 		Placement placement = PreFader;
 
 		if (i != children.end()) {
-			if ((prop = node.property (X_("placement"))) != 0) {
+			if ((prop = (*i)->property (X_("placement"))) != 0) {
 				placement = Placement (string_2_enum (prop->value(), placement));
 			}
 		}
