diff options
author | Christian Pointner <equinox@anytun.org> | 2009-01-02 11:22:10 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-01-02 11:22:10 +0000 |
commit | 180ea0e9229a3800980334aa19f30c6dade5d6d7 (patch) | |
tree | d25b6052e6429e18265c8eb0b06abc62d9722051 | |
parent | key derivation seems to work now (diff) |
cosmetic change
-rw-r--r-- | src/uanytun.c | 2 |
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; } |