summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Garrett <jeff@jgarrett.org>2008-01-25 04:00:51 -0600
committerJeff Garrett <jeff@jgarrett.org>2008-01-25 04:00:51 -0600
commitc11e2a2b9a5d387f778ba99106e8980e31059357 (patch)
treeaae7662d27ce1078e8d4fb1862dc6f5ff6cf4ab0
parentffebdbe367182c32dd4ac9cee33ac8613b7c45ed (diff)
Short circuit the state search on import
Oops. Forgot the break.
-rw-r--r--src/import_tiger.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/import_tiger.c b/src/import_tiger.c
index e4bb992..dceeb8b 100644
--- a/src/import_tiger.c
+++ b/src/import_tiger.c
@@ -1279,6 +1279,7 @@ static gboolean import_tiger_from_directory(const gchar* pszDirectoryPath, gint
{
gint nCountryID = 1; // USA is #1 *gag*
db_insert_state(st->name, st->abbrev, nCountryID, &g_nStateID);
+ break;
}
}