e32823e183
Add a number of cleanup patches to make cifs.upcall more efficient. Note that these do have the potential to break some configurations if they depend on the directory-scanning behavior of the original patches, but hopefully no one is actually relying on that. Signed-off-by: Jeff Layton <jlayton@redhat.com>
29 lines
858 B
Diff
29 lines
858 B
Diff
From bbbf7133aec555c5d27ee3163d6045ecfc4673d9 Mon Sep 17 00:00:00 2001
|
|
From: Jeff Layton <jlayton@samba.org>
|
|
Date: Tue, 12 Jul 2016 16:53:25 -0400
|
|
Subject: [cifs-utils PATCH 1/3] aclocal: fix typo in idmap.m4
|
|
|
|
We really don't want to do the same check twice.
|
|
|
|
Signed-off-by: Jeff Layton <jlayton@samba.org>
|
|
---
|
|
aclocal/idmap.m4 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/aclocal/idmap.m4 b/aclocal/idmap.m4
|
|
index 3ccdae3ab968..4e16a46568a1 100644
|
|
--- a/aclocal/idmap.m4
|
|
+++ b/aclocal/idmap.m4
|
|
@@ -19,7 +19,7 @@ if test $enable_cifsidmap != "no" -o $enable_cifsacl != "no"; then
|
|
])
|
|
fi
|
|
|
|
-if test $enable_cifsacl != "no" -o $enable_cifsacl != "no"; then
|
|
+if test $enable_cifsidmap != "no" -o $enable_cifsacl != "no"; then
|
|
ac_wbc_save_LDFLAGS="$LDFLAGS"
|
|
ac_wbc_save_LIBS="$LIBS"
|
|
LDFLAGS="$LDFLAGS $WBCLIENT_LIBS"
|
|
--
|
|
2.7.4
|
|
|