summaryrefslogtreecommitdiff
path: root/lib/gnutls_auth.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-20 14:04:26 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2015-03-20 14:04:26 +0100
commitd5f333c3159004625c3ebcc4edaf1dbd2bc6655c (patch)
treedf3995c3eb12c4f275adfa70041d5960e835865f /lib/gnutls_auth.c
parent47a0d7fbeb7ea1b9b49b102c5223496a42f95122 (diff)
downloadgnutls-d5f333c3159004625c3ebcc4edaf1dbd2bc6655c.tar.gz
doc: avoid mentioning pointers when not needed
Diffstat (limited to 'lib/gnutls_auth.c')
-rw-r--r--lib/gnutls_auth.c4
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.
*