summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/uanytun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uanytun.c b/src/uanytun.c
index 08a5f3e..b666575 100644
--- a/src/uanytun.c
+++ b/src/uanytun.c
@@ -108,7 +108,7 @@ int main_loop(tun_device_t* dev, udp_socket_t* sock, options_t* opt)
key_derivation_t kd;
ret = key_derivation_init(&kd, opt->kd_prf_, 0, opt->key_.buf_, opt->key_.length_, opt->salt_.buf_, opt->salt_.length_);
if(ret) {
- log_printf(ERR, "could not initialize cipher of type %s", opt->kd_prf_);
+ log_printf(ERR, "could not initialize key derivation of type %s", opt->kd_prf_);
return_value = ret;
}