owe: Update l_ecdh_generate_shared_secret parameters

This commit is contained in:
Andrew Zaborowski 2018-12-28 15:38:05 +01:00 committed by Denis Kenzior
parent 1578a37ac2
commit d242cfc9e9
1 changed files with 2 additions and 2 deletions

View File

@ -141,8 +141,8 @@ static bool owe_compute_keys(struct owe_sm *owe, const void *public_key,
return false;
}
if (!l_ecdh_generate_shared_secret(owe->curve, owe->private,
other_public, &shared_secret)) {
if (!l_ecdh_generate_shared_secret(owe->private, other_public,
&shared_secret)) {
return false;
}