]> git.cryptolib.org Git - labortage2013badge.git/commitdiff
small bug-fix
authorbg <daniel.otte@rub.de>
Sun, 20 Oct 2013 16:25:40 +0000 (18:25 +0200)
committerbg <daniel.otte@rub.de>
Sun, 20 Oct 2013 16:25:40 +0000 (18:25 +0200)
hostware/commandline/main.c

index 18e9547e483611010ffb550d6298f7bd5bb19734..2b144b3f7c5fa7db6b7ed7ae0fb5f6b4a10aa91a 100644 (file)
@@ -167,7 +167,7 @@ void get_token(char *param){
     char token[10];
     int cnt;
     cnt = usb_control_msg(handle, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_IN, CUSTOM_RQ_GET_TOKEN, 0, 0, token, 9, 5000);
-    if (cnt < 9 ) {
+    if (cnt <= 9 ) {
         token[cnt] = '\0';
         printf("token = %s\n", token);
     } else {