Fix minor typo in pkcsconf ouput when no slots were found. C_GetSlotCount is in reality C_GetSlotList
Signed-off-by: Klaus Heinrich Kiwi <[email protected]> --- usr/sbin/pkcsconf/pkcsconf.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/usr/sbin/pkcsconf/pkcsconf.c b/usr/sbin/pkcsconf/pkcsconf.c index bb12a90..ad39cb8 100755 --- a/usr/sbin/pkcsconf/pkcsconf.c +++ b/usr/sbin/pkcsconf/pkcsconf.c @@ -804,7 +804,7 @@ get_slot_list(int cond, CK_CHAR_PTR slot){ } if (SlotCount == 0) { - printf("C_GetSlotCount returned 0 slots. Check that your tokens" + printf("C_GetSlotList returned 0 slots. Check that your tokens" " are installed correctly.\n"); return -ENODEV; } -- 1.6.6.1 ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Opencryptoki-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opencryptoki-tech
