From deebb113ac23ffc8b929828f940054c85a695e7b Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Sun, 27 Dec 2009 15:24:55 +0100 Subject: [PATCH] db: Fix missing commas in AuthTuples table creation Signed-off-by: Sylvain Munaut --- openbsc/src/db.c | 6 +++--- 1 file 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 " ")", };