diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-11-23 12:11:49 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-03-20 17:30:50 +0100 |
commit | d6cec44b2400589a746649862326f72490288544 (patch) | |
tree | d06dd8fbbc5e5dff63d877ec835a15d90cc57e51 /src/conftest/hooks/ike_auth_fill.c | |
parent | b6016fcab3b34305b3abafc7e02af7cf7d9946f2 (diff) | |
download | strongswan-d6cec44b2400589a746649862326f72490288544.tar.bz2 strongswan-d6cec44b2400589a746649862326f72490288544.tar.xz |
Fixed conftests after extending CERT payload.
Diffstat (limited to 'src/conftest/hooks/ike_auth_fill.c')
-rw-r--r-- | src/conftest/hooks/ike_auth_fill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conftest/hooks/ike_auth_fill.c b/src/conftest/hooks/ike_auth_fill.c index 052a4be08..ac26d1bfe 100644 --- a/src/conftest/hooks/ike_auth_fill.c +++ b/src/conftest/hooks/ike_auth_fill.c @@ -108,7 +108,7 @@ METHOD(listener_t, message, bool, diff = this->bytes - size - CERT_PAYLOAD_HEADER_LENGTH; data = chunk_alloc(diff); memset(data.ptr, 0x12, data.len); - pld = cert_payload_create_custom(201, data); + pld = cert_payload_create_custom(201, data, CERTIFICATE); message->add_payload(message, &pld->payload_interface); DBG1(DBG_CFG, "inserting %d dummy bytes certificate payload", diff); } |