From 5679de9984faf27c8b2510384507703bd6737cea Mon Sep 17 00:00:00 2001 From: Jeremy Ellington Date: Wed, 9 Feb 2005 19:30:33 +0000 Subject: [PATCH] Added some debugging output --- ipmitool/src/plugins/lanplus/lanplus_crypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipmitool/src/plugins/lanplus/lanplus_crypt.c b/ipmitool/src/plugins/lanplus/lanplus_crypt.c index 617bbc9..baed14c 100644 --- a/ipmitool/src/plugins/lanplus/lanplus_crypt.c +++ b/ipmitool/src/plugins/lanplus/lanplus_crypt.c @@ -295,7 +295,8 @@ int lanplus_rakp4_hmac_matches(const struct ipmi_session * session, if (verbose > 2) { - printbuf(mac, macLength, ">> rakp4 mac as computed by the remote console"); + printbuf(bmc_mac, macLength, ">> rakp4 mac as computed by the BMC"); + printbuf(mac, macLength, ">> rakp4 mac as computed by the remote console"); } @@ -675,7 +676,6 @@ int lanplus_encrypt_payload(uint8_t crypt_alg, if (crypt_alg == IPMI_CRYPT_NONE) { - lprintf(LOG_WARNING, "NOT ENCRYPTING"); /* Just copy the input to the output */ *bytes_written = input_length; return 0;