Overview
Comment: | CACKey 0.5.13
Updated debugging messages |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.5.13 |
Files: | files | file ages | folders |
SHA1: | b09d33f9bc2dd01fd23f75ecf46333fc3d5bed4c |
User & Date: | rkeene on 2010-06-23 22:13:02 |
Other Links: | manifest | tags |
Context
2010-07-11
| ||
06:32 |
Updated to include PCSC header "winstype.h"
Updated PCSC header inclusion to be more robust check-in: fea904e63c user: rkeene tags: trunk | |
2010-06-23
| ||
22:13 |
CACKey 0.5.13
Updated debugging messages check-in: b09d33f9bc user: rkeene tags: trunk, 0.5.13 | |
2010-06-07
| ||
19:20 | Corrected compiler warning check-in: 2c67b3f70f user: rkeene tags: trunk | |
Changes
Modified cackey.c from [7d1ac77f37] to [c6e4c2b8b9].
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 |
return(CKR_GENERAL_ERROR);
}
if (pSlotList == NULL) {
*pulCount = slot_count;
CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i)", CKR_OK);
return(CKR_OK);
}
count = *pulCount;
if (count < slot_count) {
CACKEY_DEBUG_PRINTF("Error. User allocated %lu entries, but we have %lu entries.", count, slot_count);
|
| |
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 |
return(CKR_GENERAL_ERROR);
}
if (pSlotList == NULL) {
*pulCount = slot_count;
CACKEY_DEBUG_PRINTF("Returning CKR_OK (%i). Found %lu readers, but not storing IDs (pSlotList == NULL)", CKR_OK, (unsigned long) slot_count);
return(CKR_OK);
}
count = *pulCount;
if (count < slot_count) {
CACKEY_DEBUG_PRINTF("Error. User allocated %lu entries, but we have %lu entries.", count, slot_count);
|
Modified configure.ac from [4fc3500a19] to [f647f6952a].
1 2 3 4 5 6 7 8 |
AC_INIT(cackey, 0.5.12)
AC_CONFIG_HEADERS(config.h)
dnl Locate standard tools
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_AIX
|
| |
1 2 3 4 5 6 7 8 |
AC_INIT(cackey, 0.5.13)
AC_CONFIG_HEADERS(config.h)
dnl Locate standard tools
AC_PROG_CC
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_AIX
|