2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 22:35:25 +00:00

Tweak omapi_protocol_connect() so that authenticators are sent in the

proper order.
This commit is contained in:
Damien Neil
2000-10-30 18:48:07 +00:00
parent 2e3e0f9214
commit 366556efc7

View File

@@ -102,12 +102,14 @@ isc_result_t omapi_protocol_connect (omapi_object_t *h,
} }
obj -> insecure = 0; obj -> insecure = 0;
status = ISC_R_INCOMPLETE;
} else { } else {
obj -> insecure = 1; obj -> insecure = 1;
status = ISC_R_SUCCESS;
} }
omapi_protocol_dereference (&obj, MDL); omapi_protocol_dereference (&obj, MDL);
return ISC_R_SUCCESS; return status;
} }
/* Send the protocol introduction message. */ /* Send the protocol introduction message. */