diff options
| author | Martin Willi <martin@strongswan.org> | 2008-05-15 09:26:47 +0000 |
|---|---|---|
| committer | Martin Willi <martin@strongswan.org> | 2008-05-15 09:26:47 +0000 |
| commit | 89658f6d6c0cea83f62109ad15f93df89873e499 (patch) | |
| tree | 2e411f8ef6a33872a3c3961886a19c9678313c49 /src/charon/plugins/sql/sqlite.sql | |
| parent | bb94e1ed601ae3c256c882c8f1fb34525b401577 (diff) | |
| download | strongswan-89658f6d6c0cea83f62109ad15f93df89873e499.tar.bz2 strongswan-89658f6d6c0cea83f62109ad15f93df89873e499.tar.xz | |
static leases use 0, not NULL timeout
fixed static leases
Diffstat (limited to 'src/charon/plugins/sql/sqlite.sql')
| -rw-r--r-- | src/charon/plugins/sql/sqlite.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charon/plugins/sql/sqlite.sql b/src/charon/plugins/sql/sqlite.sql index 760cf1b04..49d350129 100644 --- a/src/charon/plugins/sql/sqlite.sql +++ b/src/charon/plugins/sql/sqlite.sql @@ -159,7 +159,7 @@ CREATE TABLE pools ( start BLOB NOT NULL, end BLOB NOT NULL, next BLOB NOT NULL, - timeout INTEGER DEFAULT NULL, + timeout INTEGER NOT NULL, UNIQUE (name) ); DROP INDEX IF EXISTS pools_name; |
