summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-05-12 02:45:29 +0000
committerAlexander Bokovoy <ab@samba.org>2003-05-12 02:45:29 +0000
commitfdfcb62364594c620729a7cf06ee4963f1bb5c4d (patch)
tree6293373c42fce7a45e9afe551bfa14199a72eb0a /source3/configure.in
parentf3e2ad6d4d560cab7473a25910c7495818f570c5 (diff)
downloadsamba-fdfcb62364594c620729a7cf06ee4963f1bb5c4d.tar.gz
samba-fdfcb62364594c620729a7cf06ee4963f1bb5c4d.tar.bz2
samba-fdfcb62364594c620729a7cf06ee4963f1bb5c4d.zip
Forgot to actually change default for quotas to -no- in configure.in
(This used to be commit 7c2395d7cd98b23d58a024a54e5058101fc9d322)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in
index b9ffcd8286..529e54c9a1 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -2563,12 +2563,12 @@ AC_MSG_CHECKING(whether to try disk-quotas support)
AC_ARG_WITH(quotas,
[ --with-quotas Include disk-quota support (default=no)],
[ case "$withval" in
- no)
- AC_MSG_RESULT(no)
- samba_cv_TRY_QUOTAS=no
+ yes)
+ AC_MSG_RESULT(yes)
+ samba_cv_TRY_QUOTAS=yes
;;
*)
- AC_MSG_RESULT(yes)
+ AC_MSG_RESULT(no)
;;
esac ],
AC_MSG_RESULT(no)