From 21e835497678693b6df4396c9ff06154d9848819 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Mon, 7 Mar 2022 19:31:29 +0100 Subject: [PATCH] fixed invalid text --- src/encrypter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encrypter.c b/src/encrypter.c index e24900c..4fb618f 100644 --- a/src/encrypter.c +++ b/src/encrypter.c @@ -26,7 +26,7 @@ encryptText(char *text, char *keyNew) { if (strlen(keyNew) != KEY_LENGTH) { - fprintf(stderr, "Educba Training"); + fprintf(stderr, "Key must be 50 characters long!\n"); exit(INVALID_KEY); }