diff options
author | Werner Koch <[email protected]> | 2010-12-14 19:17:58 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-12-14 19:17:58 +0000 |
commit | 5fd7ff3488d64cddad9b0f767ef21059fe52be71 (patch) | |
tree | 5706364bf2658b80debc0f0f5d93a88b4f924534 /dirmngr/cdb.h | |
parent | Change --dameon home directory to /gnupg under Wince (diff) | |
download | gnupg-5fd7ff3488d64cddad9b0f767ef21059fe52be71.tar.gz gnupg-5fd7ff3488d64cddad9b0f767ef21059fe52be71.zip |
Tweaks for gpgconf.
Fixed dirmngr bug 1010.
Diffstat (limited to 'dirmngr/cdb.h')
-rw-r--r-- | dirmngr/cdb.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dirmngr/cdb.h b/dirmngr/cdb.h index 73cc9952e..0c0d2702a 100644 --- a/dirmngr/cdb.h +++ b/dirmngr/cdb.h @@ -20,6 +20,9 @@ void cdb_pack(cdbi_t num, unsigned char buf[4]); struct cdb { int cdb_fd; /* file descriptor */ /* private members */ +#ifdef HAVE_W32_SYSTEM + void *cdb_mapping; /* Mapping handle. */ +#endif cdbi_t cdb_fsize; /* datafile size */ const unsigned char *cdb_mem; /* mmap'ed file memory */ cdbi_t cdb_vpos, cdb_vlen; /* found data */ |