aboutsummaryrefslogtreecommitdiffstats
path: root/testing/hosts
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2010-04-12 13:51:10 +0200
committerTobias Brunner <tobias@strongswan.org>2010-04-12 13:51:10 +0200
commit355c3a66b17ba50a813df62e0e821a1f900c32d9 (patch)
treee5bd88eca0f05ecacc275fe209b746e546446313 /testing/hosts
parent054fd746583e21000e6f0a5054327d0b2d316f84 (diff)
downloadstrongswan-355c3a66b17ba50a813df62e0e821a1f900c32d9.tar.bz2
strongswan-355c3a66b17ba50a813df62e0e821a1f900c32d9.tar.xz
When logging to the database, the IDs of an IKE SA are initially NULL.
Diffstat (limited to 'testing/hosts')
-rw-r--r--testing/hosts/default/etc/ipsec.d/tables.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/hosts/default/etc/ipsec.d/tables.sql b/testing/hosts/default/etc/ipsec.d/tables.sql
index a7c5f1d81..0e880826d 100644
--- a/testing/hosts/default/etc/ipsec.d/tables.sql
+++ b/testing/hosts/default/etc/ipsec.d/tables.sql
@@ -197,9 +197,9 @@ CREATE TABLE ike_sas (
id INTEGER NOT NULL,
initiator INTEGER NOT NULL,
local_id_type INTEGER NOT NULL,
- local_id_data BLOB NOT NULL,
+ local_id_data BLOB DEFAULT NULL,
remote_id_type INTEGER NOT NULL,
- remote_id_data BLOB NOT NULL,
+ remote_id_data BLOB DEFAULT NULL,
host_family INTEGER NOT NULL,
local_host_data BLOB NOT NULL,
remote_host_data BLOB NOT NULL,