mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 12:32:04 -04:00
silence VC compiler warning
This commit is contained in:
parent
fb5c7e04d3
commit
e09b9e7a91
1 changed files with 1 additions and 1 deletions
|
|
@ -2115,7 +2115,7 @@ process_keytag(ns_client_t *client, isc_buffer_t *buf, size_t optlen) {
|
|||
|
||||
client->keytag = isc_mem_get(client->mctx, optlen);
|
||||
if (client->keytag != NULL) {
|
||||
client->keytag_len = optlen;
|
||||
client->keytag_len = (isc_uint16_t)optlen;
|
||||
memmove(client->keytag, isc_buffer_current(buf), optlen);
|
||||
}
|
||||
isc_buffer_forward(buf, (unsigned int)optlen);
|
||||
|
|
|
|||
Loading…
Reference in a new issue