diff options
author | J. Bruce Fields <bfields@fieldses.org> | 2006-12-04 20:22:37 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2006-12-06 10:46:45 -0500 |
commit | 2818bf81a8c91fb29634df68bdc3cc5e003201d0 (patch) | |
tree | 8835e6bc382b43bb4546f3063573d46936ba711c /net/sunrpc/auth_gss/gss_krb5_unseal.c | |
parent | 5eb064f93973def1ec2ab4a46929e94389a6283b (diff) | |
download | linux-2818bf81a8c91fb29634df68bdc3cc5e003201d0.tar.bz2 |
rpcgss: krb5: kill checksum_type, miscellaneous small cleanup
Previous changes reveal some obvious cruft.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/auth_gss/gss_krb5_unseal.c')
-rw-r--r-- | net/sunrpc/auth_gss/gss_krb5_unseal.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/net/sunrpc/auth_gss/gss_krb5_unseal.c b/net/sunrpc/auth_gss/gss_krb5_unseal.c index 23b509dedf97..60469d9ab226 100644 --- a/net/sunrpc/auth_gss/gss_krb5_unseal.c +++ b/net/sunrpc/auth_gss/gss_krb5_unseal.c @@ -78,7 +78,6 @@ gss_verify_mic_kerberos(struct gss_ctx *gss_ctx, struct krb5_ctx *ctx = gss_ctx->internal_ctx_id; int signalg; int sealalg; - s32 checksum_type; char cksumdata[16]; struct xdr_netobj md5cksum = {.len = 0, .data = cksumdata}; s32 now; @@ -115,12 +114,7 @@ gss_verify_mic_kerberos(struct gss_ctx *gss_ctx, if (signalg != SGN_ALG_DES_MAC_MD5) goto out; - /* compute the checksum of the message */ - - /* initialize the the cksum */ - checksum_type = CKSUMTYPE_RSA_MD5; - - ret = make_checksum(checksum_type, ptr - 2, 8, + ret = make_checksum(CKSUMTYPE_RSA_MD5, ptr - 2, 8, message_buffer, 0, &md5cksum); if (ret) goto out; |