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'.
This commit is contained in:
Zdenek Styblik 2012-12-20 04:36:06 +00:00
parent a3d872c73d
commit 4728863d5b

View File

@ -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;
}