mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
Major revisions to 'backend' code
This commit is contained in:
@@ -110,10 +110,9 @@ char *the_relation;
|
||||
if (relation=='Y') {
|
||||
fprintf (outfile, "-- CREATE ANY Relationships ...\n");
|
||||
fprintf (outfile, "\n");
|
||||
the_relation=mdb_get_relationships(mdb);
|
||||
while (the_relation[0] != '\0') {
|
||||
while ((the_relation=mdb_get_relationships(mdb)) != NULL) {
|
||||
fprintf(outfile,"%s\n",the_relation);
|
||||
the_relation=mdb_get_relationships(mdb);
|
||||
g_free(the_relation);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user