]> git.meshlink.io Git - meshlink/blobdiff - src/openssl/ecdh.c
Fix whitespace.
[meshlink] / src / openssl / ecdh.c
index 871f9fbd2f89a67400031e367217772c24c8f83e..5238c3409de3b1dacee08e141771aa5913615f06 100644 (file)
@@ -41,7 +41,7 @@ bool ecdh_generate_public(ecdh_t *ecdh, void *pubkey) {
                logger(DEBUG_ALWAYS, LOG_ERR, "Generating EC key failed: %s", ERR_error_string(ERR_get_error(), NULL));
                return false;
        }
-       
+
        const EC_POINT *point = EC_KEY_get0_public_key(*ecdh);
        if(!point) {
                EC_KEY_free(*ecdh);