summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2016-04-29 19:38:01 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2016-04-29 19:39:33 +0200
commit0a06c225757a8ba55995147a681bb1457de2b3b5 (patch)
treee5313073577e620a9a91d8bc0529b12379edd6ce
parentc4d1a4bc7bf636527986db172a3d3986caa219f4 (diff)
downloadgnutls-0a06c225757a8ba55995147a681bb1457de2b3b5.tar.gz
corrected import issue in gnutls_privkey_import_ecc_raw
-rw-r--r--lib/gnutls_privkey_raw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gnutls_privkey_raw.c b/lib/gnutls_privkey_raw.c
index 10ea3e012c..35015f71d1 100644
--- a/lib/gnutls_privkey_raw.c
+++ b/lib/gnutls_privkey_raw.c
@@ -309,7 +309,7 @@ gnutls_x509_privkey_t xkey;
if (ret < 0)
return gnutls_assert_val(ret);
- ret = gnutls_x509_privkey_import_ecc_raw(xkey, curve, y, x, k);
+ ret = gnutls_x509_privkey_import_ecc_raw(xkey, curve, x, y, k);
if (ret < 0) {
gnutls_assert();
goto error;