aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2019-12-25 18:33:19 +0100
committerNeels Hofmeyr <neels@hofmeyr.de>2019-12-25 19:09:45 +0100
commit1f8f1b97775cbc12649304549a7c00cc9f4dd270 (patch)
tree4cde9f2cf1a8e3b4695e2472164eebc5822980c5
parenta5ed663dea8a95a77d3a68259fc4e66e90094afc (diff)
cosmetic comment tweak36c3
-rw-r--r--src/db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.c b/src/db.c
index 9cb6b4c..29f38cf 100644
--- a/src/db.c
+++ b/src/db.c
@@ -347,7 +347,7 @@ static int db_upgrade_v3(struct db_context *dbc)
{
int rc;
- /* A newer SQLite version would allow simply 'ATLER TABLE subscriber RENAME COLUMN hlr_number TO msc_number'.
+ /* A newer SQLite version would allow simply 'ALTER TABLE subscriber RENAME COLUMN hlr_number TO msc_number'.
* This is a really expensive workaround for that in order to cover earlier SQLite versions as well:
* Create a new table with the new column name and copy the data over (https://www.sqlite.org/faq.html#q11).
*/