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:40:05 +0200
commit056b8ea3a85b0f8e64ba415a7d402942f03a21ce (patch)
treee4b03857c413cbef817130540a6087b7dfa3495a
parent63a4d0c2f1ee1f0efadf87d3a95378dabf7e6ee6 (diff)
downloadgnutls-056b8ea3a85b0f8e64ba415a7d402942f03a21ce.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 002447d4e5..d1b7816d4e 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;