diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2006-06-01 19:49:00 +0000 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2006-06-01 19:49:00 +0000 |
commit | 8ec8717386a7c342df92f05e489eec905f84e078 (patch) | |
tree | 78f6c1d7525bdfe3b1a3712ed1fa2743d9ba5672 /lib/gnutls_db.c | |
parent | a0a951f39af3d04a400b13d49009b84d11d4002f (diff) | |
download | gnutls-8ec8717386a7c342df92f05e489eec905f84e078.tar.gz |
Added a preliminary C++ interface.
Diffstat (limited to 'lib/gnutls_db.c')
-rw-r--r-- | lib/gnutls_db.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gnutls_db.c b/lib/gnutls_db.c index 0e2abaf122..fe3de43469 100644 --- a/lib/gnutls_db.c +++ b/lib/gnutls_db.c @@ -46,7 +46,7 @@ * The datum's data must be allocated using the function * gnutls_malloc(). * - * The first argument to store_function() will be null unless gnutls_db_set_ptr() + * The first argument to retr_func() will be null unless gnutls_db_set_ptr() * has been called. * **/ @@ -65,7 +65,7 @@ gnutls_db_set_retrieve_function (gnutls_session_t session, * Sets the function that will be used to remove data from the resumed * sessions database. This function must return 0 on success. * - * The first argument to rem_function() will be null unless gnutls_db_set_ptr() + * The first argument to rem_func() will be null unless gnutls_db_set_ptr() * has been called. * **/ @@ -84,7 +84,7 @@ gnutls_db_set_remove_function (gnutls_session_t session, * Sets the function that will be used to store data from the resumed * sessions database. This function must remove 0 on success. * - * The first argument to store_function() will be null unless gnutls_db_set_ptr() + * The first argument to store_func() will be null unless gnutls_db_set_ptr() * has been called. * **/ |