diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2015-03-20 14:04:26 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2015-03-20 14:04:26 +0100 |
commit | d5f333c3159004625c3ebcc4edaf1dbd2bc6655c (patch) | |
tree | df3995c3eb12c4f275adfa70041d5960e835865f /lib/gnutls_auth.c | |
parent | 47a0d7fbeb7ea1b9b49b102c5223496a42f95122 (diff) | |
download | gnutls-d5f333c3159004625c3ebcc4edaf1dbd2bc6655c.tar.gz |
doc: avoid mentioning pointers when not needed
Diffstat (limited to 'lib/gnutls_auth.c')
-rw-r--r-- | lib/gnutls_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gnutls_auth.c b/lib/gnutls_auth.c index b7c9208ec8..6a2e706cdf 100644 --- a/lib/gnutls_auth.c +++ b/lib/gnutls_auth.c @@ -63,7 +63,7 @@ void gnutls_credentials_clear(gnutls_session_t session) * gnutls_credentials_set: * @session: is a #gnutls_session_t type. * @type: is the type of the credentials - * @cred: is a pointer to a structure. + * @cred: the credentials to set * * Sets the needed credentials for the specified type. Eg username, * password - or public and private keys etc. The @cred parameter is @@ -144,7 +144,7 @@ gnutls_credentials_set(gnutls_session_t session, * gnutls_credentials_get: * @session: is a #gnutls_session_t type. * @type: is the type of the credentials to return - * @cred: will contain the pointer to the credentials structure. + * @cred: will contain the credentials. * * Returns the previously provided credentials structures. * |