mirror of https://github.com/wolfSSL/wolfBoot.git
keygen.c: replace gets with scanf
parent
151a35e3b0
commit
e367cd17e0
|
@ -301,7 +301,7 @@ int main(int argc, char** argv)
|
||||||
fclose(f);
|
fclose(f);
|
||||||
printf("** Warning: key file already exist! Are you sure you want to generate a new key and overwrite the existing key? [Type 'Yes, I am sure!']: ");
|
printf("** Warning: key file already exist! Are you sure you want to generate a new key and overwrite the existing key? [Type 'Yes, I am sure!']: ");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
gets(reply);
|
scanf("%s", reply);
|
||||||
printf("Reply is [%s]\n", reply);
|
printf("Reply is [%s]\n", reply);
|
||||||
if (strcmp(reply, "Yes, I am sure!") != 0) {
|
if (strcmp(reply, "Yes, I am sure!") != 0) {
|
||||||
printf("Operation aborted by user.");
|
printf("Operation aborted by user.");
|
||||||
|
|
Loading…
Reference in New Issue