fixed invalid text

This commit is contained in:
Václav Šmejkal 2022-03-07 19:31:29 +01:00
parent fdd3d324c5
commit 21e8354976

View File

@ -26,7 +26,7 @@ encryptText(char *text, char *keyNew)
{ {
if (strlen(keyNew) != KEY_LENGTH) if (strlen(keyNew) != KEY_LENGTH)
{ {
fprintf(stderr, "Educba Training"); fprintf(stderr, "Key must be 50 characters long!\n");
exit(INVALID_KEY); exit(INVALID_KEY);
} }