From: Nikos Mavrogiannopoulos Date: Sun, 17 Aug 2014 07:25:07 +0000 (+0200) Subject: doc update X-Git-Tag: gnutls_3_4_0~1064 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59e68a60313bc454323072ebd56dade8ae7b3fb5;p=thirdparty%2Fgnutls.git doc update --- diff --git a/lib/verify-tofu.c b/lib/verify-tofu.c index 92894ea888..1f89ec8829 100644 --- a/lib/verify-tofu.c +++ b/lib/verify-tofu.c @@ -801,7 +801,7 @@ int gnutls_tdb_init(gnutls_tdb_t * tdb) * This function will associate a storage function with the * trust storage structure. The function is of the following form. * - * gnutls_tdb_store_func(const char* db_name, const char* host, + * int gnutls_tdb_store_func(const char* db_name, const char* host, * const char* service, time_t expiration, * const gnutls_datum_t* pubkey); * @@ -820,7 +820,7 @@ void gnutls_tdb_set_store_func(gnutls_tdb_t tdb, * This function will associate a commitment (hash) storage function with the * trust storage structure. The function is of the following form. * - * gnutls_tdb_store_commitment_func(const char* db_name, const char* host, + * int gnutls_tdb_store_commitment_func(const char* db_name, const char* host, * const char* service, time_t expiration, * gnutls_digest_algorithm_t, const gnutls_datum_t* hash); * @@ -840,7 +840,7 @@ void gnutls_tdb_set_store_commitment_func(gnutls_tdb_t tdb, * This function will associate a retrieval function with the * trust storage structure. The function is of the following form. * - * gnutls_tdb_verify_func(const char* db_name, const char* host, + * int gnutls_tdb_verify_func(const char* db_name, const char* host, * const char* service, const gnutls_datum_t* pubkey); * **/