diff options
| author | Tobias Brunner <tobias@strongswan.org> | 2011-09-01 09:57:03 +0200 |
|---|---|---|
| committer | Tobias Brunner <tobias@strongswan.org> | 2011-09-01 09:59:37 +0200 |
| commit | f35578acb199fa91192343718dba82851e2fbfaf (patch) | |
| tree | a7b60cedb964939fbac039694e5d13d2be182050 /src/libcharon/plugins/eap_simaka_sql/test.sql | |
| parent | d0e1b237be737077d9d06604afde905f7f0697a9 (diff) | |
| download | strongswan-f35578acb199fa91192343718dba82851e2fbfaf.tar.bz2 strongswan-f35578acb199fa91192343718dba82851e2fbfaf.tar.xz | |
Renamed 'use' database column as that is a keyword in MySQL.
Reported by Stefan Tomas.
Diffstat (limited to 'src/libcharon/plugins/eap_simaka_sql/test.sql')
| -rw-r--r-- | src/libcharon/plugins/eap_simaka_sql/test.sql | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcharon/plugins/eap_simaka_sql/test.sql b/src/libcharon/plugins/eap_simaka_sql/test.sql index 0c5c22f39..99b4a2635 100644 --- a/src/libcharon/plugins/eap_simaka_sql/test.sql +++ b/src/libcharon/plugins/eap_simaka_sql/test.sql @@ -2,23 +2,23 @@ DELETE FROM triplets; DELETE FROM quintuplets; INSERT INTO triplets - (id, use, rand, sres, kc) VALUES + (id, used, rand, sres, kc) VALUES ('moon@strongswan.org', 0, X'00112233445566778899AABBCCDDEEFF', X'01234567', X'0123456789ABCDEF' ); INSERT INTO triplets - (id, use, rand, sres, kc) VALUES + (id, used, rand, sres, kc) VALUES ('moon@strongswan.org', 0, X'112233445566778899AABBCCDDEEFF00', X'12345678', X'123456789ABCDEF0' ); INSERT INTO triplets - (id, use, rand, sres, kc) VALUES + (id, used, rand, sres, kc) VALUES ('moon@strongswan.org', 0, X'2233445566778899AABBCCDDEEFF0011', X'23456789', X'23456789ABCDEF01' ); INSERT INTO quintuplets - (id, use, rand, autn, ck, ik, res) VALUES + (id, used, rand, autn, ck, ik, res) VALUES ('moon@strongswan.org', 0, X'00112233445566778899AABBCCDDEEFF', X'112233445566778899AABBCCDDEEFF00', |
