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:
@@ -124,7 +124,7 @@ base64_decode_char(base64_decode_ctx_t *ctx, int c) {
|
||||
return (ISC_R_BADBASE64);
|
||||
if ((s = strchr(base64, c)) == NULL)
|
||||
return (ISC_R_BADBASE64);
|
||||
ctx->val[ctx->digits++] = s - base64;
|
||||
ctx->val[ctx->digits++] = (int)(s - base64);
|
||||
if (ctx->digits == 4) {
|
||||
int n;
|
||||
unsigned char buf[3];
|
||||
|
Reference in New Issue
Block a user