mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 14:35:26 +00:00
3681. [port] Update the Windows build system to support feature
selection and WIN64 builds. This is a work in progress. [RT #34160]
This commit is contained in:
@@ -99,7 +99,7 @@ hex_decode_char(hex_decode_ctx_t *ctx, int c) {
|
||||
|
||||
if ((s = strchr(hex, toupper(c))) == NULL)
|
||||
return (ISC_R_BADHEX);
|
||||
ctx->val[ctx->digits++] = s - hex;
|
||||
ctx->val[ctx->digits++] = (int)(s - hex);
|
||||
if (ctx->digits == 2) {
|
||||
unsigned char num;
|
||||
|
||||
|
Reference in New Issue
Block a user