dlugolecki.net.pl
Dziennik
Polecane
Software
projects
/
gedcom-parse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
822d2f3
)
Added a note if the parse failed with compatibility mode disabled.
author
Peter Verthez
<Peter.Verthez@advalvas.be>
Sun, 2 Feb 2003 09:36:18 +0000
(09:36 +0000)
committer
Peter Verthez
<Peter.Verthez@advalvas.be>
Sun, 2 Feb 2003 09:36:18 +0000
(09:36 +0000)
bin/gedcom-check.c
patch
|
blob
|
history
diff --git
a/bin/gedcom-check.c
b/bin/gedcom-check.c
index 3f14d6c1fe092fdcbb4a406da6602ecd23a3da36..0accc9c6730920e018a4af7c354c085115d5ff6b 100644
(file)
--- a/
bin/gedcom-check.c
+++ b/
bin/gedcom-check.c
@@
-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;
}