mirror of
https://gitlab.kit.edu/kit/scc/sys/mail/exim-encrypt-dlfunc.git
synced 2025-12-06 10:13:56 +01:00
debugging meson build tests
This commit is contained in:
@ -64,9 +64,12 @@ int main(int argc, char *argv[]) {
|
||||
// check environment for LIBEXIM_PASSWORD
|
||||
password_env = getenv(ENVVAR_PASSWORD_NAME);
|
||||
if (password_env != NULL && strlen(password_env) > 0) {
|
||||
password_len = strlen((const char *) password_env);
|
||||
password = malloc(password_len + 1);
|
||||
strncpy(password, password_env, password_len);
|
||||
// password_len = strlen((const char *) password_env);
|
||||
// password = malloc(password_len);
|
||||
// sodium_memzero(password, password_len);
|
||||
// strncpy(password, password_env, password_len);
|
||||
password = password_env;
|
||||
password_len = strlen(password);
|
||||
mode |= PASSENV;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user