]> git.mxchange.org Git - simgear.git/commitdiff
Fix a problem which was introduced in the previous patch
authorehofman <ehofman>
Thu, 16 Oct 2003 14:53:14 +0000 (14:53 +0000)
committerehofman <ehofman>
Thu, 16 Oct 2003 14:53:14 +0000 (14:53 +0000)
simgear/props/props_io.cxx

index 92781ea6e3b5a8bfcf80affa4f4b4f5a36893689..d6b38c62d51199d43012f39f35f5dbcdd80b093a 100644 (file)
@@ -117,9 +117,9 @@ checkFlag (const char * flag, bool defaultState = true)
 {
   if (flag == 0)
     return defaultState;
-  else if (flag == "y")
+  else if (!strcmp(flag, "y"))
     return true;
-  else if (flag == "n")
+  else if (!strcmp(flag, "n"))
     return false;
   else {
     string message = "Unrecognized flag value '";
@@ -137,7 +137,7 @@ PropsVisitor::startElement (const char * name, const XMLAttributes &atts)
   const char * attval;
 
   if (_level == 0) {
-    if (name != "PropertyList") {
+    if (strcmp(name, "PropertyList")) {
       string message = "Root element name is ";
       message += name;
       message += "; expected PropertyList";