summaryrefslogtreecommitdiffstats
path: root/src/include/kdb.h
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2010-05-04 04:12:24 +0000
committerGreg Hudson <ghudson@mit.edu>2010-05-04 04:12:24 +0000
commitbf7421c5119d44057a576822b2426b6f05d23a62 (patch)
tree40b37692248ae0246449ab5d90232121e310c7c9 /src/include/kdb.h
parent120d229ed83a09b5d0a65f81d6030c6383895f32 (diff)
downloadkrb5-bf7421c5119d44057a576822b2426b6f05d23a62.tar.gz
krb5-bf7421c5119d44057a576822b2426b6f05d23a62.tar.xz
krb5-bf7421c5119d44057a576822b2426b6f05d23a62.zip
Remove krb5_db_set_option and the associated DAL entry. It was not
used. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23965 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/kdb.h')
-rw-r--r--src/include/kdb.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/include/kdb.h b/src/include/kdb.h
index 492e7364e2..5225a12e52 100644
--- a/src/include/kdb.h
+++ b/src/include/kdb.h
@@ -417,7 +417,6 @@ const char * krb5_db_errcode2string ( krb5_context kcontext, long err_code );
krb5_error_code krb5_db_destroy ( krb5_context kcontext, char **db_args );
krb5_error_code krb5_db_promote ( krb5_context kcontext, char **db_args );
krb5_error_code krb5_db_get_age ( krb5_context kcontext, char *db_name, time_t *t );
-krb5_error_code krb5_db_set_option ( krb5_context kcontext, int option, void *value );
krb5_error_code krb5_db_lock ( krb5_context kcontext, int lock_mode );
krb5_error_code krb5_db_unlock ( krb5_context kcontext );
krb5_error_code krb5_db_get_principal ( krb5_context kcontext,
@@ -950,22 +949,6 @@ typedef struct _kdb_vftabl {
time_t *age);
/*
- * Optional: Set a database option. This function is not currently used by
- * any callers. Behavior depends on the value of option:
- *
- * KRB5_KDB_OPT_SET_DB_NAME: Interpret value as a C string. Set the
- * database name (e.g. a filename for an embedded database).
- *
- * KRB5_KDB_OPT_SET_LOCK_MODE: Interpret value as a pointer to
- * krb5_boolean. If *value points to TRUE, set the database to
- * non-blocking lock mode, causing operations to return OSA_ADB_CANTLOCK_DB
- * when it would otherwise wait to obtain a lock. Set *value to the old
- * value of the non-blocking flag.
- */
- krb5_error_code (*db_set_option)(krb5_context kcontext, int option,
- void *value);
-
- /*
* Optional: Lock the database, with semantics depending on the mode
* argument:
*