summaryrefslogtreecommitdiff
path: root/lib/gnutls_db.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-18 16:46:11 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-01-18 16:46:11 +0000
commitf30d45e288135184d567c71e7ac82064e1caa492 (patch)
tree8beae4eed7793360c3dca292564ba1aaea5d5f62 /lib/gnutls_db.c
parent7ca888e95f2d56eb94099a3df936138f868274ab (diff)
downloadgnutls-f30d45e288135184d567c71e7ac82064e1caa492.tar.gz
several cleanups in order to move to gnutls 0.4.0
Diffstat (limited to 'lib/gnutls_db.c')
-rw-r--r--lib/gnutls_db.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gnutls_db.c b/lib/gnutls_db.c
index 234325edaf..56d6b48618 100644
--- a/lib/gnutls_db.c
+++ b/lib/gnutls_db.c
@@ -52,7 +52,7 @@
* has been called.
*
**/
-void gnutls_db_set_retrieve_function( GNUTLS_STATE state, DB_RETR_FUNC retr_func) {
+void gnutls_db_set_retrieve_function( GNUTLS_STATE state, GNUTLS_DB_RETR_FUNC retr_func) {
state->gnutls_internals.db_retrieve_func = retr_func;
}
@@ -70,7 +70,7 @@ void gnutls_db_set_retrieve_function( GNUTLS_STATE state, DB_RETR_FUNC retr_func
* has been called.
*
**/
-void gnutls_db_set_remove_function( GNUTLS_STATE state, DB_REMOVE_FUNC rem_func) {
+void gnutls_db_set_remove_function( GNUTLS_STATE state, GNUTLS_DB_REMOVE_FUNC rem_func) {
state->gnutls_internals.db_remove_func = rem_func;
}
@@ -88,7 +88,7 @@ void gnutls_db_set_remove_function( GNUTLS_STATE state, DB_REMOVE_FUNC rem_func)
* has been called.
*
**/
-void gnutls_db_set_store_function( GNUTLS_STATE state, DB_STORE_FUNC store_func) {
+void gnutls_db_set_store_function( GNUTLS_STATE state, GNUTLS_DB_STORE_FUNC store_func) {
state->gnutls_internals.db_store_func = store_func;
}
@@ -141,7 +141,7 @@ void gnutls_db_set_cache_expiration( GNUTLS_STATE state, int seconds) {
* than gdbm (ie. called function gnutls_db_set_store_func() etc.)
*
**/
-int gnutls_db_set_name( GNUTLS_STATE state, char* filename) {
+int gnutls_db_set_name( GNUTLS_STATE state, const char* filename) {
#ifdef HAVE_LIBGDBM
GDBM_FILE dbf;
@@ -161,7 +161,7 @@ GDBM_FILE dbf;
/* maybe it does not exist - so try to
* create it.
*/
- dbf = gdbm_open( filename, 0, GDBM_WRCREAT, 0600, NULL);
+ dbf = gdbm_open( (char*)filename, 0, GDBM_WRCREAT, 0600, NULL);
if (dbf==NULL) return GNUTLS_E_DB_ERROR;
gdbm_close(dbf);