]> git.ipfire.org Git - thirdparty/gnutls.git/commitdiff
doc update
authorNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 17 Aug 2014 07:25:07 +0000 (09:25 +0200)
committerNikos Mavrogiannopoulos <nmav@gnutls.org>
Sun, 17 Aug 2014 07:25:07 +0000 (09:25 +0200)
lib/verify-tofu.c

index 92894ea88849e49b0f9c7b681d373f69ae5cdb81..1f89ec88298a8e5bd5a87b732e185aab648d88b0 100644 (file)
@@ -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);
  *
  **/