]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - providers/implementations/kdfs/pbkdf2.c
fix some code with obvious wrong coding style
[thirdparty/openssl.git] / providers / implementations / kdfs / pbkdf2.c
index fe247028ea968e2ee08ebd56b2d850948df98f2b..16acf300ea31a4d59e0de151173267177aa7c0e1 100644 (file)
@@ -194,7 +194,7 @@ static int kdf_pbkdf2_set_ctx_params(void *vctx, const OSSL_PARAM params[])
             ERR_raise(ERR_LIB_PROV, PROV_R_INVALID_SALT_LENGTH);
             return 0;
         }
-        if (!pbkdf2_set_membuf(&ctx->salt, &ctx->salt_len,p))
+        if (!pbkdf2_set_membuf(&ctx->salt, &ctx->salt_len, p))
             return 0;
     }