|
@@ -42,7 +42,7 @@ struct rxkad_level2_hdr {
|
|
|
__be32 checksum; /* decrypted data checksum */
|
|
|
};
|
|
|
|
|
|
-MODULE_DESCRIPTION("RxRPC network protocol type-2 security (Kerberos)");
|
|
|
+MODULE_DESCRIPTION("RxRPC network protocol type-2 security (Kerberos 4)");
|
|
|
MODULE_AUTHOR("Red Hat, Inc.");
|
|
|
MODULE_LICENSE("GPL");
|
|
|
|
|
@@ -506,7 +506,7 @@ static int rxkad_verify_packet(const struct rxrpc_call *call,
|
|
|
if (!call->conn->cipher)
|
|
|
return 0;
|
|
|
|
|
|
- if (sp->hdr.securityIndex != 2) {
|
|
|
+ if (sp->hdr.securityIndex != RXRPC_SECURITY_RXKAD) {
|
|
|
*_abort_code = RXKADINCONSISTENCY;
|
|
|
_leave(" = -EPROTO [not rxkad]");
|
|
|
return -EPROTO;
|
|
@@ -1122,7 +1122,7 @@ static void rxkad_clear(struct rxrpc_connection *conn)
|
|
|
static struct rxrpc_security rxkad = {
|
|
|
.owner = THIS_MODULE,
|
|
|
.name = "rxkad",
|
|
|
- .security_index = RXKAD_VERSION,
|
|
|
+ .security_index = RXRPC_SECURITY_RXKAD,
|
|
|
.init_connection_security = rxkad_init_connection_security,
|
|
|
.prime_packet_security = rxkad_prime_packet_security,
|
|
|
.secure_packet = rxkad_secure_packet,
|