Added a note if the parse failed with compatibility mode disabled.
authorPeter Verthez <Peter.Verthez@advalvas.be>
Sun, 2 Feb 2003 09:36:18 +0000 (09:36 +0000)
committerPeter Verthez <Peter.Verthez@advalvas.be>
Sun, 2 Feb 2003 09:36:18 +0000 (09:36 +0000)
bin/gedcom-check.c

index 3f14d6c1fe092fdcbb4a406da6602ecd23a3da36..0accc9c6730920e018a4af7c354c085115d5ff6b 100644 (file)
@@ -122,6 +122,10 @@ int main(int argc, char* argv[])
   }
   else {
     printf(_("Parse failed\n"));
+    if (!compat_enabled) {
+      printf(_("  Note: Compatibility mode was not enabled\n"));
+      printf(_("  You could try the check again using the '-c' option\n"));
+    }
   }
   return result;
 }