diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-11-04 14:37:22 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-11-04 14:37:22 +0100 |
commit | 39b30518c25f198e5e345fb96c689af0a4210d26 (patch) | |
tree | 557da151db6d12debfa27b4afae1d691cb8ebf30 /src/libcharon/plugins/sql | |
parent | 5fd8e53002fa8199cd7fd000c2780146e2a9a26f (diff) | |
download | strongswan-39b30518c25f198e5e345fb96c689af0a4210d26.tar.bz2 strongswan-39b30518c25f198e5e345fb96c689af0a4210d26.tar.xz |
Syntax error in sqlite.sql fixed.
Diffstat (limited to 'src/libcharon/plugins/sql')
-rw-r--r-- | src/libcharon/plugins/sql/sqlite.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/sql/sqlite.sql b/src/libcharon/plugins/sql/sqlite.sql index 3d106351d..5c6704b47 100644 --- a/src/libcharon/plugins/sql/sqlite.sql +++ b/src/libcharon/plugins/sql/sqlite.sql @@ -22,7 +22,7 @@ CREATE TABLE child_configs ( start_action INTEGER NOT NULL DEFAULT '0', dpd_action INTEGER NOT NULL DEFAULT '0', close_action INTEGER NOT NULL DEFAULT '0', - ipcomp INTEGER NOT NULL DEFAULT '0' + ipcomp INTEGER NOT NULL DEFAULT '0', reqid INTEGER NOT NULL DEFAULT '0' ); DROP INDEX IF EXISTS child_configs_name; |