From 970c5ff8b6c180647076615fce43cd3f438c7ff1 Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Thu, 20 Dec 2012 04:41:50 +0000 Subject: [PATCH] ID: 3597469 - 'mc watchdog off' prints on STDERR, should be STDOUT Commit fixes/replaces lprintf(LOG_ERR,...) with printf() to print info message on STDOUT instead of STDERR in 'mc watchdog off'. --- ipmitool/lib/ipmi_mc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipmitool/lib/ipmi_mc.c b/ipmitool/lib/ipmi_mc.c index 48dd470..e3513f8 100644 --- a/ipmitool/lib/ipmi_mc.c +++ b/ipmitool/lib/ipmi_mc.c @@ -735,7 +735,7 @@ ipmi_mc_rst_watchdog(struct ipmi_intf * intf) return -1; } - lprintf(LOG_ERR, "IPMI Watchdog Timer Reset - countdown restarted!"); + printf("IPMI Watchdog Timer Reset - countdown restarted!\n"); return 0; }