Code

ipmi plugin: Fix a typo: sstrerror_r -> sstrerror.
authorPeter Holik <peter@holik.at>
Tue, 15 Jul 2008 06:21:21 +0000 (08:21 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Tue, 15 Jul 2008 06:21:21 +0000 (08:21 +0200)
src/ipmi.c

index 95e2e7c1023fd140e7012920e548d2ad4c5ed5e6..956aaf44c25cc3bf659e02e7768bca6268449f24 100644 (file)
@@ -73,7 +73,7 @@ static void c_ipmi_error (const char *func, int status)
 
   if (IPMI_IS_OS_ERR (status))
   {
-    sstrerror_r (IPMI_GET_OS_ERR (status), errbuf, sizeof (errbuf));
+    sstrerror (IPMI_GET_OS_ERR (status), errbuf, sizeof (errbuf));
   }
   else if (IPMI_IS_IPMI_ERR (status))
   {