summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2020-04-29 02:19:51 +0000
committerDamjan Marion <dmarion@me.com>2020-04-29 08:45:39 +0000
commitd7586d50f68655631482f33a83a1fe6f4f21ff64 (patch)
tree8faca79d1bb90a391cc5923347ffc5f58083901c
parentc4ae0fffb5d147d71b9f943305c0f28f61655a6f (diff)
vcl: add separate fcntl64 ldp handler
Type: fix Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: Idb81e2901398dd6ae94931c705a704c7b52bbb36
-rw-r--r--src/vcl/ldp.c17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/vcl/ldp.c b/src/vcl/ldp.c
index e5baa0ead7e..091c7e5cff4 100644
--- a/src/vcl/ldp.c
+++ b/src/vcl/ldp.c
@@ -477,13 +477,8 @@ writev (int fd, const struct iovec * iov, int iovcnt)
return size;
}
-#ifdef HAVE_FCNTL64
-int
-fcntl64 (int fd, int cmd, ...)
-#else
int
fcntl (int fd, int cmd, ...)
-#endif
{
vls_handle_t vlsh;
int rv = 0;
@@ -544,6 +539,18 @@ fcntl (int fd, int cmd, ...)
}
int
+fcntl64 (int fd, int cmd, ...)
+{
+ va_list ap;
+ int rv;
+
+ va_start (ap, cmd);
+ rv = fcntl (fd, cmd, ap);
+ va_end (ap);
+ return rv;
+}
+
+int
ioctl (int fd, unsigned long int cmd, ...)
{
vls_handle_t vlsh;