From eb2b6141174546fb85a4e7cf8d72f367fbac1614 Mon Sep 17 00:00:00 2001 From: curt Date: Fri, 29 Jun 2001 03:47:55 +0000 Subject: [PATCH] - changed SGPropertyNode::UNKNOWN to SGPropertyNode::UNSPECIFIED --- src/Network/props.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Network/props.cxx b/src/Network/props.cxx index bb850308a..cc319d84d 100644 --- a/src/Network/props.cxx +++ b/src/Network/props.cxx @@ -80,8 +80,8 @@ static string getValueTypeString( const SGPropertyNode *node ) { } SGPropertyNode::Type type = node->getType(); - if ( type == SGPropertyNode::UNKNOWN ) { - result = "unknown"; + if ( type == SGPropertyNode::UNSPECIFIED ) { + result = "unspecified"; } else if ( type == SGPropertyNode::BOOL ) { result = "bool"; } else if ( type == SGPropertyNode::INT ) {