From a1f58f6009dcc88886d9ad7f00ca2b03e3e4d56f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20=C3=96hrn?= Date: Mon, 26 Apr 2004 15:54:34 +0000 Subject: [PATCH] Fix call to intf->open to match new definition. --- ipmitool/src/ipmievd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipmitool/src/ipmievd.c b/ipmitool/src/ipmievd.c index edc45dd..026a5a2 100644 --- a/ipmitool/src/ipmievd.c +++ b/ipmitool/src/ipmievd.c @@ -204,7 +204,7 @@ int main(int argc, char ** argv) printf("Connecting to OpenIPMI device.\n"); /* open connection to openipmi device */ - r = intf->open(intf, NULL, 0, NULL, NULL); + r = intf->open(intf); if (r < 0) { printf("ERROR: Unable to open OpenIPMI device\n"); exit(EXIT_FAILURE);