From: Sean Parkinson Date: Thu, 29 Mar 2018 04:55:55 +0000 (+1000) Subject: tests: Use a valid key exchange value in eap_proto_ikev2 X-Git-Tag: hostap_2_7~371 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d5df79f2d3b1bb06b333a97f3be767f5de03194;p=thirdparty%2Fhostap.git tests: Use a valid key exchange value in eap_proto_ikev2 Signed-off-by: Sean Parkinson --- diff --git a/tests/hwsim/test_eap_proto.py b/tests/hwsim/test_eap_proto.py index d97a6f15e..2ff67430c 100644 --- a/tests/hwsim/test_eap_proto.py +++ b/tests/hwsim/test_eap_proto.py @@ -5124,7 +5124,7 @@ def test_eap_proto_ikev2(dev, apdev): def build_ke(next=0): ke = struct.pack(">BBHHH", next, 0, 4 + 4 + 192, 5, 0) - ke += 192*'\x00' + ke += 191*'\x00'+'\x02' return ke idx += 1