diff options
author | Jan Kara <jack@suse.cz> | 2024-05-07 12:49:34 +0200 |
---|---|---|
committer | Jan Kara <jack@suse.cz> | 2024-05-07 12:49:34 +0200 |
commit | c41dbb51e5426d7dc204943a5676320685f61520 (patch) | |
tree | ac979f73404475c1fe02cefb25a886a443c27c8c | |
parent | 44613ce8b4520810ff28798d33875b45c3ff8576 (diff) |
Disable BSD_BEHAVIOUR by default
These days BSD_BEHAVIOUR is really old legacy and there's no point in
doing permission checks in userspace when kernel does it for us. So
disable BSD_BEHAVIOUR by default.
Signed-off-by: Jan Kara <jack@suse.cz>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 273d505..6409027 100644 --- a/configure.ac +++ b/configure.ac @@ -263,7 +263,7 @@ AS_IF([test x"$enable_xfs_roothack" = "xyes"], [ AC_ARG_ENABLE([bsd-behaviour], [AS_HELP_STRING([--disable-bsd-behaviour], [Mimic BSD behaviour])], [enable_bsd_behaviour="$enableval"], - [enable_bsd_behaviour=yes] + [enable_bsd_behaviour="no"] ) AS_IF([test x"$enable_bsd_behaviour" != "xno"], [ AC_DEFINE([BSD_BEHAVIOUR], 1, [Check rights to query / set quotas before calling quotactl]) |