diff --git a/ChangeLog b/ChangeLog index 7a89245..bc84ac8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-01-15 NIIBE Yutaka + + * src/usb-icc.c (icc_handle_data): Bug fix: add break for case + ICC_STATE_SEND. + 2011-01-14 NIIBE Yutaka * Version 0.6. diff --git a/NEWS b/NEWS index 55a763e..cf71677 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,15 @@ Gnuk NEWS - User visible changes +* Major changes in Gnuk 0.7 + + Released 2011-01-15, by NIIBE Yutaka + +** Bug fix only. +In version 0.6, a severe bug was introduced in usb-icc.c when adding a +work around for libccid 1.3.11. The fix is one-liner, but it is worth +to release newer version. + + * Major changes in Gnuk 0.6 Released 2011-01-14, by NIIBE Yutaka diff --git a/README b/README index f37f1af..b3655c7 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ Gnuk - software for GPG USB Token - Version 0.6 - 2011-01-14 + Version 0.7 + 2011-01-15 Niibe Yutaka Free Software Initiative of Japan @@ -26,7 +26,7 @@ USB Token by Gnuk everywhere. Release notes ============= -This is seventh release of Gnuk. While it works well for specific +This is eighth release of Gnuk. While it works well for specific usages, it is still experimental. Tested features are: diff --git a/src/usb-icc.c b/src/usb-icc.c index 7f08b11..62f4ba5 100644 --- a/src/usb-icc.c +++ b/src/usb-icc.c @@ -618,6 +618,7 @@ icc_handle_data (void) icc_error (ICC_OFFSET_CMD_NOT_SUPPORTED); next_state = ICC_STATE_WAIT; } + break; default: next_state = ICC_STATE_START; DEBUG_INFO ("ERR10\r\n");