summaryrefslogtreecommitdiff
path: root/source3/libsmb
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-07-15 20:58:11 +0200
committerStefan Metzmacher <metze@samba.org>2009-07-15 20:59:35 +0200
commit2fca950d68bff3641ed3ac4bdaee1d16f0cca88a (patch)
tree196c577778d7ae026c5676c7ae742660cf9339af /source3/libsmb
parent8447600d98ebb7da47a4815194d29c77225c7bb5 (diff)
downloadsamba-2fca950d68bff3641ed3ac4bdaee1d16f0cca88a.tar.gz
samba-2fca950d68bff3641ed3ac4bdaee1d16f0cca88a.tar.bz2
samba-2fca950d68bff3641ed3ac4bdaee1d16f0cca88a.zip
s3:libsmb: we need to include "includes.h" as first header to let code build on all platforms
This should fix the Tru64 build. metze
Diffstat (limited to 'source3/libsmb')
-rw-r--r--source3/libsmb/libsmb_thread_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/libsmb_thread_posix.c b/source3/libsmb/libsmb_thread_posix.c
index 411ffbdfbb..6519659c25 100644
--- a/source3/libsmb/libsmb_thread_posix.c
+++ b/source3/libsmb/libsmb_thread_posix.c
@@ -17,8 +17,8 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <pthread.h>
#include "includes.h"
+#include <pthread.h>
#include "libsmbclient.h"
#include "libsmb_internal.h"