crypt: Remove unused variable on cert test

Checked on x86_64-linux-gnu and i686-linux-gnu.
This commit is contained in:
Adhemerval Zanella 2022-03-25 11:13:37 -03:00
parent f60510ddaf
commit 1dedc5bd5c
1 changed files with 1 additions and 2 deletions

View File

@ -50,10 +50,9 @@ main (int argc, char *argv[])
{
char key[64],plain[64],cipher[64],answer[64];
int i;
int test;
int fail;
for(test=0;!feof(stdin);test++){
for(;!feof(stdin);){
get8(key);
printf(" K: "); put8(key);