From 4728863d5b67699177d72779bab29df3c270ff81 Mon Sep 17 00:00:00 2001 From: Zdenek Styblik Date: Thu, 20 Dec 2012 04:36:06 +0000 Subject: [PATCH] ID: 3597470 - 'mc watchdog reset' 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 reset'. --- 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 a78f2c4..48dd470 100644 --- a/ipmitool/lib/ipmi_mc.c +++ b/ipmitool/lib/ipmi_mc.c @@ -698,7 +698,7 @@ ipmi_mc_shutoff_watchdog(struct ipmi_intf * intf) return -1; } - lprintf(LOG_ERR, "Watchdog Timer Shutoff successful -- timer stopped"); + printf("Watchdog Timer Shutoff successful -- timer stopped\n"); return 0; }