diff options
Diffstat (limited to 'src/libimcv/pts/pts.c')
-rw-r--r-- | src/libimcv/pts/pts.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libimcv/pts/pts.c b/src/libimcv/pts/pts.c index a7def9b7a..6deccc82a 100644 --- a/src/libimcv/pts/pts.c +++ b/src/libimcv/pts/pts.c @@ -224,11 +224,12 @@ METHOD(pts_t, create_dh_nonce, bool, return TRUE; } -METHOD(pts_t, get_my_public_value, void, +METHOD(pts_t, get_my_public_value, bool, private_pts_t *this, chunk_t *value, chunk_t *nonce) { this->dh->get_my_public_value(this->dh, value); *nonce = this->is_imc ? this->responder_nonce : this->initiator_nonce; + return TRUE; } METHOD(pts_t, set_peer_public_value, void, |