summaryrefslogtreecommitdiff
path: root/util/ipmimv.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2017-01-03 02:33:44 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2017-01-03 02:33:44 +0100
commitf85b8b834b7ff85c80503faa73f237040330087b (patch)
tree595cb1ac38c0a8222c9a768b3c0523e36c063be4 /util/ipmimv.c
parentdb5e8f26947114f06480dd22b9db7e22e50ee133 (diff)
New upstream version 3.0.1upstream/3.0.1
Diffstat (limited to 'util/ipmimv.c')
-rw-r--r--util/ipmimv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/ipmimv.c b/util/ipmimv.c
index 8962ef5..4cf995d 100644
--- a/util/ipmimv.c
+++ b/util/ipmimv.c
@@ -241,16 +241,16 @@ static void dbgmsg(char *pattn, ...)
fflush( fpdbg );
}
-int set_cloexec(fd,fdebugcmd)
+int set_cloexec(int fd, int fdebugcmd)
{
int flags;
- flags = fcntl(ipmi_fd, F_GETFD);
+ flags = fcntl(fd, F_GETFD);
if (flags == -1) {
if (fdebugcmd) printf("fcntl(get) errno = %d\n",errno);
return -1;
}
flags |= FD_CLOEXEC;
- if (fcntl(ipmi_fd, F_SETFD, flags) == -1)
+ if (fcntl(fd, F_SETFD, flags) == -1)
{
if (fdebugcmd) printf("fcntl(set) errno = %d\n",errno);
return -1;