Commit 4d648b8b authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Missed one freebsd->varnish change: [v]be64enc()

parent 1f631aa6
...@@ -232,7 +232,7 @@ SHA256_Pad(SHA256_CTX * ctx) ...@@ -232,7 +232,7 @@ SHA256_Pad(SHA256_CTX * ctx)
} }
/* Add the terminating bit-count. */ /* Add the terminating bit-count. */
be64enc(&ctx->buf[56], ctx->count); vbe64enc(&ctx->buf[56], ctx->count);
/* Mix in the final block. */ /* Mix in the final block. */
SHA256_Transform(ctx->state, ctx->buf); SHA256_Transform(ctx->state, ctx->buf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment