From: ehofman Date: Thu, 16 Oct 2003 19:51:59 +0000 (+0000) Subject: Fix a problem which was introduced by the previous patch X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c01b4dce670c94ab5d714d2f96b614db8b3269a6;p=flightgear.git Fix a problem which was introduced by the previous patch --- diff --git a/src/Systems/electrical.cxx b/src/Systems/electrical.cxx index 0091e62c6..d2bb01c59 100644 --- a/src/Systems/electrical.cxx +++ b/src/Systems/electrical.cxx @@ -62,7 +62,7 @@ FGElectricalSupplier::FGElectricalSupplier ( SGPropertyNode *node ) { for ( i = 0; i < node->nChildren(); ++i ) { SGPropertyNode *child = node->getChild(i); // cout << " scanning: " << child->getName() << endl; - if ( child->getName() == "prop" ) { + if ( !strcmp(child->getName(), "prop") ) { string prop = child->getStringValue(); // cout << " Adding prop = " << prop << endl; add_prop( prop ); @@ -107,7 +107,7 @@ FGElectricalBus::FGElectricalBus ( SGPropertyNode *node ) { int i; for ( i = 0; i < node->nChildren(); ++i ) { SGPropertyNode *child = node->getChild(i); - if ( child->getName() == "prop" ) { + if ( !strcmp(child->getName(), "prop") ) { string prop = child->getStringValue(); add_prop( prop ); } @@ -122,7 +122,7 @@ FGElectricalOutput::FGElectricalOutput ( SGPropertyNode *node ) { int i; for ( i = 0; i < node->nChildren(); ++i ) { SGPropertyNode *child = node->getChild(i); - if ( child->getName() == "prop" ) { + if ( !strcmp(child->getName(), "prop") ) { string prop = child->getStringValue(); add_prop( prop ); }