2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

changed authlen from signed int to unsigned int in omapi_message_send

This commit is contained in:
David Lawrence 2000-05-08 16:32:23 +00:00
parent 6e3a8256ee
commit 5990bedbac

View File

@ -141,7 +141,7 @@ omapi_message_send(omapi_object_t *message, omapi_object_t *protocol) {
omapi_connection_t *c;
omapi_message_t *m;
omapi_object_t *connection;
int authlen = 0;
unsigned int authlen = 0;
isc_result_t result = ISC_R_SUCCESS;
REQUIRE(message != NULL && message->type == omapi_type_message);