summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-02 11:22:10 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-02 11:22:10 +0000
commit180ea0e9229a3800980334aa19f30c6dade5d6d7 (patch)
treed25b6052e6429e18265c8eb0b06abc62d9722051
parentkey derivation seems to work now (diff)
cosmetic change
-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;
}