bug fix from Per Bojsen <per.bojsen@worldnet.att.net>

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@1818 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldreleases/1.4
Linas Vepstas 27 years ago
parent ac0807ca72
commit 68d526099c

@ -616,14 +616,15 @@ FindCommonCurrency (Split **slist, char * ra, char * rb)
while (s) {
char *sa, *sb;
/* ahh -- stupid users may not want or use the double entry
* features of this engine. So, in particular, there
/* Novice/casual users may not want or use the double entry
* features of this engine. Because of this, there
* may be the occasional split without a parent account.
* Well, that's ok, we'll just go with the flow.
*/
if (force_double_entry) {
assert (s->acc);
} else {
} else
if (NULL == s->acc) {
i++; s=slist[i]; continue;
}

Loading…
Cancel
Save