diff options
-rw-r--r-- | booster/src/booster.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/booster/src/booster.c b/booster/src/booster.c index 4961cc2a706..8dcfdc7e979 100644 --- a/booster/src/booster.c +++ b/booster/src/booster.c @@ -2155,7 +2155,13 @@ fcntl (int fd, int cmd, ...) switch (cmd) { case F_DUPFD: - case F_DUPFD_CLOEXEC: + /* + * FIXME: Consider this case when implementing F_DUPFD, F_GETFD + * etc flags in libglusterfsclient. Commenting it out for + * timebeing since it is defined only in linux kernel + * versions >= 2.6.24. + */ + /* case F_DUPFD_CLOEXEC: */ case F_GETFD: case F_GETFL: case F_GETOWN: |