replaced ENCRYPTION_SEPARATOR_STRING usage for ENCRYPTION_SEPARATOR
This commit is contained in:
parent
227b933bc4
commit
23dec2b310
@ -125,7 +125,10 @@ outputFlags encryptText(char *text, char *keyNew, inputFlags flags)
|
|||||||
|
|
||||||
if (i != strlen(text) - 1)
|
if (i != strlen(text) - 1)
|
||||||
{
|
{
|
||||||
strcat(returningText, ENCRYPTION_SEPARATOR_STRING);
|
textBuffer = realloc(textBuffer, 2);
|
||||||
|
sprintf(textBuffer, "%c", ENCRYPTION_SEPARATOR);
|
||||||
|
|
||||||
|
strcat(returningText, textBuffer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user