Skip to content

Commit

Permalink
httpauth: fix win onversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cHuberCoffee committed Jan 9, 2024
1 parent a39978e commit d4b1de7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/httpauth/digest.c
Original file line number Diff line number Diff line change
Expand Up @@ -1071,7 +1071,7 @@ int httpauth_digest_response_full(struct httpauth_digest_enc_resp **presp,

/* create cnonce & nonce count */
resp->cnonce = rand_u32();
resp->nc = re_atomic_rlx_add(&nc, 1);
resp->nc = (uint32_t) re_atomic_rlx_add(&nc, 1);

/* copy fields */
err = pl_strdup(&resp->realm, &chall->realm);
Expand Down

0 comments on commit d4b1de7

Please sign in to comment.