preventing any control character from being encryptionSeparator
This commit is contained in:
parent
3af7e30097
commit
1bc4a61b1b
@ -49,7 +49,7 @@ outputFlags noOutput(_Bool exitCode)
|
|||||||
//SETTERS
|
//SETTERS
|
||||||
void setEncryptionSeparator(char encryptionSeparatorNew)
|
void setEncryptionSeparator(char encryptionSeparatorNew)
|
||||||
{
|
{
|
||||||
if (encryptionSeparatorNew == '\0') return;
|
if (encryptionSeparatorNew <= 31) return;
|
||||||
|
|
||||||
encryptionSeparator = encryptionSeparatorNew;
|
encryptionSeparator = encryptionSeparatorNew;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user