From 831f75a0309fd8ef729f7f2407c17e13cccf0bd9 Mon Sep 17 00:00:00 2001
From: Thomas Geymayer <tomgey@gmail.com>
Date: Thu, 27 Feb 2014 00:20:06 +0100
Subject: [PATCH] Autopilot: fix wrong warning for unknown node

---
 src/Autopilot/component.cxx | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/Autopilot/component.cxx b/src/Autopilot/component.cxx
index 429e9a414..d0b39025c 100644
--- a/src/Autopilot/component.cxx
+++ b/src/Autopilot/component.cxx
@@ -72,7 +72,11 @@ bool Component::configure( SGPropertyNode& cfg_node,
   {
     _name = cfg_node.getStringValue();
     return true;
-  } 
+  }
+
+  if( cfg_name == "update-interval-secs" )
+    // This is handled in autopilot.cxx
+    return true;
 
   if ( cfg_name == "debug" )
   {