rots-utils: implement a temporary threshold.

master
S.J.R. van Schaik 7 years ago
parent 49cb64ba30
commit 0a3466fc39
  1. 4
      source/verify.c

@ -238,5 +238,9 @@ int do_verify(int argc, char *argv[])
printf("%zu/%zu signatures are correct.\n", count, total);
/* TODO: implement a configurable threshold. */
if (count < total)
return -1;
return 0;
}

Loading…
Cancel
Save