X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgcrypt%2Fcipher.c;h=176b62b19e95ef258f26c704c2d291312527485f;hp=f8668da7a922f9764f6ea4c66c16cf8c313ca9cc;hb=b0ffeb7eeb21920842382c302ca15ec0d758e9b6;hpb=1c475ecb575367a6b3f9328b0f643ad636155341 diff --git a/src/gcrypt/cipher.c b/src/gcrypt/cipher.c index f8668da7..176b62b1 100644 --- a/src/gcrypt/cipher.c +++ b/src/gcrypt/cipher.c @@ -102,7 +102,7 @@ static bool cipher_open(cipher_t *cipher, int algo, int mode) { } if((err = gcry_cipher_open(&cipher->handle, algo, mode, 0))) { - logger(DEBUG_ALWAYS, LOG_DEBUG, "Unable to intialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err)); + logger(DEBUG_ALWAYS, LOG_DEBUG, "Unable to initialise cipher %d mode %d: %s", algo, mode, gcry_strerror(err)); return false; }