aboutsummaryrefslogtreecommitdiffstats
path: root/src/conftest/hooks/rebuild_auth.c
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2017-09-19 17:26:58 +0200
committerTobias Brunner <tobias@strongswan.org>2017-11-08 16:48:10 +0100
commitde280c2e031730dc3c2ddcc291b1db5ee61a97d9 (patch)
tree18b731fb0ec7c7066ed519501e293c36891f28b3 /src/conftest/hooks/rebuild_auth.c
parenta413571f3bd9c94db02d8a3c026e87d57f5d120a (diff)
downloadstrongswan-de280c2e031730dc3c2ddcc291b1db5ee61a97d9.tar.bz2
strongswan-de280c2e031730dc3c2ddcc291b1db5ee61a97d9.tar.xz
private-key: Add optional parameters argument to sign() method
Diffstat (limited to 'src/conftest/hooks/rebuild_auth.c')
-rw-r--r--src/conftest/hooks/rebuild_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/conftest/hooks/rebuild_auth.c b/src/conftest/hooks/rebuild_auth.c
index b2df278a5..bc20292a1 100644
--- a/src/conftest/hooks/rebuild_auth.c
+++ b/src/conftest/hooks/rebuild_auth.c
@@ -143,7 +143,7 @@ static bool rebuild_auth(private_rebuild_auth_t *this, ike_sa_t *ike_sa,
id->destroy(id);
return FALSE;
}
- if (!private->sign(private, scheme, octets, &auth_data))
+ if (!private->sign(private, scheme, NULL, octets, &auth_data))
{
chunk_free(&octets);
private->destroy(private);