diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-03-11 20:14:29 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2003-03-11 20:14:29 +0000 |
commit | 20198610069ad076eecd831e8c370b3ad7d09c99 (patch) | |
tree | 5626f3fb06170cb1a33970180e92a2cb76cfd8dc /lib/auth_rsa.c | |
parent | c6f315f0adbc65ec325476b599eabe6c870df2a9 (diff) | |
download | gnutls-20198610069ad076eecd831e8c370b3ad7d09c99.tar.gz |
some improvements in the private key handling api. It is now used internally.
Diffstat (limited to 'lib/auth_rsa.c')
-rw-r--r-- | lib/auth_rsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/auth_rsa.c b/lib/auth_rsa.c index 999154cfeb..af93ee722b 100644 --- a/lib/auth_rsa.c +++ b/lib/auth_rsa.c @@ -191,8 +191,8 @@ const gnutls_certificate_credentials cred; /* non export cipher suites. */ - *params_size = cred->pkey[index].params_size; - *params = cred->pkey[index].params; + *params_size = cred->pkey[index]->params_size; + *params = cred->pkey[index]->params; return 0; } |