renamed encryptionSeparatorNew to encryption_separator_new

This commit is contained in:
Václav Šmejkal 2023-02-04 19:14:53 +01:00
parent 5c2f77f14f
commit 7fb6240e8b
Signed by: ENGO150
GPG Key ID: 4A57E86482968843
2 changed files with 2 additions and 2 deletions
include
src/core/lib

@ -83,7 +83,7 @@ char *why2_get_memory_identifier(void); //RETURNS STRING USED IN LINKED LIST (IN
char *why2_get_default_memory_identifier(void);
//SETTERS
void why2_set_encryption_separator(char encryptionSeparatorNew);
void why2_set_encryption_separator(char encryption_separator_new);
void why2_set_key_length(int keyLengthNew);
void why2_set_flags(why2_input_flags newFlags); //.... whatcha think?
void why2_set_encryption_operation(why2_encryption_operation_cb newEncryptionOperation); //are you that dumb?

@ -155,7 +155,7 @@ char *why2_get_default_memory_identifier(void)
}
//SETTERS
void why2_set_encryption_separator(char encryptionSeparatorNew)
void why2_set_encryption_separator(char encryption_separator_new)
{
if (encryptionSeparatorNew <= 31) return;