added missing SUCCESS exit to checkKey & checkText
This commit is contained in:
parent
827331c2ff
commit
99e1ca932d
@ -294,6 +294,8 @@ int checkKey(char *key, inputFlags flags)
|
|||||||
if (!flags.noOutput) fprintf(stderr, "Key must be at least %lu characters long!\n", getKeyLength());
|
if (!flags.noOutput) fprintf(stderr, "Key must be at least %lu characters long!\n", getKeyLength());
|
||||||
return INVALID_KEY;
|
return INVALID_KEY;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
int checkText(char *text, inputFlags flags)
|
int checkText(char *text, inputFlags flags)
|
||||||
@ -303,6 +305,8 @@ int checkText(char *text, inputFlags flags)
|
|||||||
if (!flags.noOutput) fprintf(stderr, "No text to encrypt!\n");
|
if (!flags.noOutput) fprintf(stderr, "No text to encrypt!\n");
|
||||||
return INVALID_TEXT;
|
return INVALID_TEXT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long countIntLength(int number)
|
unsigned long countIntLength(int number)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user