+Tue Jan 20 17:46:53 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
+
+ * src/remote_internal.c: Remove a use of strerror() in error
+ reporting missed earlier
+
Tue Jan 20 17:33:53 GMT 2009 Daniel P. Berrange <berrange@redhat.com>
* src/xen_inotify.c, src/xen_unified.c, src/xen_unified.h,
if (ret < 0) {
if (errno == EWOULDBLOCK)
continue;
- errorf (in_open ? NULL : conn, VIR_ERR_INTERNAL_ERROR,
- _("poll on socket failed %s"), strerror(errno));
+ virReportSystemError(in_open ? NULL : conn, errno,
+ "%s", _("poll on socket failed"));
return -1;
}