summaryrefslogtreecommitdiff
path: root/nss/lib/softoken/legacydb/keydbi.h
diff options
context:
space:
mode:
Diffstat (limited to 'nss/lib/softoken/legacydb/keydbi.h')
-rw-r--r--nss/lib/softoken/legacydb/keydbi.h27
1 files changed, 13 insertions, 14 deletions
diff --git a/nss/lib/softoken/legacydb/keydbi.h b/nss/lib/softoken/legacydb/keydbi.h
index 924bd71..783c98e 100644
--- a/nss/lib/softoken/legacydb/keydbi.h
+++ b/nss/lib/softoken/legacydb/keydbi.h
@@ -17,36 +17,35 @@
*/
struct NSSLOWKEYDBHandleStr {
DB *db;
- DB *updatedb; /* used when updating an old version */
- SECItem *global_salt; /* password hashing salt for this db */
- int version; /* version of the database */
- char *appname; /* multiaccess app name */
- char *dbname; /* name of the openned DB */
- PRBool readOnly; /* is the DB read only */
+ DB *updatedb; /* used when updating an old version */
+ SECItem *global_salt; /* password hashing salt for this db */
+ int version; /* version of the database */
+ char *appname; /* multiaccess app name */
+ char *dbname; /* name of the openned DB */
+ PRBool readOnly; /* is the DB read only */
PRLock *lock;
- PRInt32 ref; /* reference count */
+ PRInt32 ref; /* reference count */
};
/*
** Typedef for callback for traversing key database.
** "key" is the key used to index the data in the database (nickname)
** "data" is the key data
-** "pdata" is the user's data
+** "pdata" is the user's data
*/
-typedef SECStatus (* NSSLOWKEYTraverseKeysFunc)(DBT *key, DBT *data, void *pdata);
-
+typedef SECStatus (*NSSLOWKEYTraverseKeysFunc)(DBT *key, DBT *data, void *pdata);
SEC_BEGIN_PROTOS
/*
-** Traverse the entire key database, and pass the nicknames and keys to a
+** Traverse the entire key database, and pass the nicknames and keys to a
** user supplied function.
** "f" is the user function to call for each key
** "udata" is the user's data, which is passed through to "f"
*/
-extern SECStatus nsslowkey_TraverseKeys(NSSLOWKEYDBHandle *handle,
- NSSLOWKEYTraverseKeysFunc f,
- void *udata);
+extern SECStatus nsslowkey_TraverseKeys(NSSLOWKEYDBHandle *handle,
+ NSSLOWKEYTraverseKeysFunc f,
+ void *udata);
SEC_END_PROTOS