The branch, master has been updated
via f9cc2de util.c: fix order of inclusion to correctly consume config.h
from 7a9eddd ctdb-tests: Remove statd-callout when running NFS tests
https://git.samba.org/?p=samba.git;a=shortlog;h=master
- Log -----------------------------------------------------------------
commit f9cc2de6129a7f998132cdc56c4c742d25b47f27
Author: Uri Simchoni <[email protected]>
Date: Thu Jul 2 20:09:02 2015 +0300
util.c: fix order of inclusion to correctly consume config.h
replace.h has to be the first file included in order to correctly act
upon the definitions in config.h.
Specifically, this change fixes 32-bit i686 builds, which depend upon
_FILE_OFFSET_BITS=64 to be set before any standard library file is
included.
Signed-off-by: Uri Simchoni <[email protected]>
Reviewed-by: "Stefan (metze) Metzmacher" <[email protected]>
Reviewed-by: Volker Lendecke <[email protected]>
Autobuild-User(master): Volker Lendecke <[email protected]>
Autobuild-Date(master): Thu Jul 9 12:32:03 CEST 2015 on sn-devel-104
-----------------------------------------------------------------------
Summary of changes:
lib/util/util.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Changeset truncated at 500 lines:
diff --git a/lib/util/util.c b/lib/util/util.c
index 4f0e67f..393d83d 100644
--- a/lib/util/util.c
+++ b/lib/util/util.c
@@ -22,8 +22,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <talloc.h>
#include "replace.h"
+#include <talloc.h>
#include "system/network.h"
#include "system/filesys.h"
#include "system/locale.h"
--
Samba Shared Repository