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'.
This commit is contained in:
Zdenek Styblik 2012-12-20 04:41:50 +00:00
parent 4728863d5b
commit 970c5ff8b6

View File

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