aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2009-12-27 15:24:55 +0100
committerHarald Welte <laforge@netfilter.org>2010-01-03 10:13:14 +0100
commitdeebb113ac23ffc8b929828f940054c85a695e7b (patch)
tree2baacf70f1bb4d66efe5ee07189e9da8a1298589
parent1f6c11fda80fca9915531c22e41c62279ba2c2a0 (diff)
db: Fix missing commas in AuthTuples table creation
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--openbsc/src/db.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/db.c b/openbsc/src/db.c
index 73e9c25ef..57ea9baf6 100644
--- a/openbsc/src/db.c
+++ b/openbsc/src/db.c
@@ -133,9 +133,9 @@ static char *create_stmts[] = {
"CREATE TABLE IF NOT EXISTS AuthTuples ("
"id INTEGER PRIMARY KEY AUTOINCREMENT, "
"subscriber_id NUMERIC UNIQUE NOT NULL, "
- "rand BLOB"
- "sres BLOB"
- "kc BLOB"
+ "rand BLOB, "
+ "sres BLOB, "
+ "kc BLOB "
")",
};