Changeset 179
- Timestamp:
- 06/15/09 19:51:23 (3 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
-
NEWS (modified) (1 diff)
-
configure.ac (modified) (2 diffs)
-
src/libp11.h (modified) (1 diff)
-
src/p11_slot.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEWS
r168 r179 1 1 NEWS for Libp11 -- History of user visible changes 2 3 New in 0.2.5; 2009-06-15; Andreas Jellinghaus 4 * Add function to export the slot id (Douglas E. Engert). 5 * Increase library version because of the new function. 2 6 3 7 New in 0.2.4; 2008-07-31; Andreas Jellinghaus -
trunk/configure.ac
r178 r179 5 5 define([PACKAGE_VERSION_MAJOR], [0]) 6 6 define([PACKAGE_VERSION_MINOR], [2]) 7 define([PACKAGE_VERSION_FIX], [ 4])8 define([PACKAGE_SUFFIX], [ -svn])7 define([PACKAGE_VERSION_FIX], [5]) 8 define([PACKAGE_SUFFIX], []) 9 9 10 10 AC_INIT([libp11],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX]) … … 22 22 # (Oldest interface removed: OLDEST++) 23 23 # (Interfaces added: CURRENT++, REVISION=0) 24 LIBP11_LT_CURRENT=" 2"24 LIBP11_LT_CURRENT="3" 25 25 LIBP11_LT_OLDEST="1" 26 26 LIBP11_LT_REVISION="0" -
trunk/src/libp11.h
r173 r179 159 159 extern int PKCS11_enumerate_slots(PKCS11_CTX * ctx, 160 160 PKCS11_SLOT **slotsp, unsigned int *nslotsp); 161 162 /** 163 * Get the slot_id from a slot as it is stored in private 164 * 165 * @param slotp pointer on a slot 166 * @retval the slotid 167 */ 168 extern unsigned long PKCS11_get_slotid_from_slot(PKCS11_SLOT *slotp); 161 169 162 170 /** -
trunk/src/p11_slot.c
r142 r179 27 27 28 28 /* 29 * Get slotid from private 30 */ 31 unsigned long 32 PKCS11_get_slotid_from_slot(PKCS11_SLOT *slot) 33 { 34 PKCS11_SLOT_private *priv = PRIVSLOT(slot); 35 36 return priv->id; 37 } 38 39 /* 29 40 * Enumerate slots 30 41 */
Note: See TracChangeset
for help on using the changeset viewer.
