diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/uanytun.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -3,6 +3,7 @@ * changed -n|--ifconfig parameter to new behavior tun and tap devices now use the same syntax * improved tap device handling on OpenBSD +* added runtime option for anytun 0.2 crypto compatibility mode * fixed packet length errors * fixed device type detection bug * dropping privileges is now possible wihtout chroot diff --git a/src/uanytun.c b/src/uanytun.c index d52ef7d..ab7f905 100644 --- a/src/uanytun.c +++ b/src/uanytun.c @@ -116,7 +116,7 @@ int init_main_loop(options_t* opt, cipher_t* c, auth_algo_t* aa, key_derivation_ } if(opt->anytun02_compat_) - log_printf(ERR, "enabling anytun 0.2.x crypto compatiblity mode"); + log_printf(NOTICE, "enabling anytun 0.2.x crypto compatiblity mode"); ret = key_derivation_init(kd, opt->kd_prf_, opt->ld_kdr_, opt->anytun02_compat_, opt->passphrase_, opt->key_.buf_, opt->key_.length_, opt->salt_.buf_, opt->salt_.length_); if(ret) { log_printf(ERR, "could not initialize key derivation of type %s", opt->kd_prf_); |