summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Terpstra <jht@samba.org>2002-09-28 20:44:23 +0000
committerJohn Terpstra <jht@samba.org>2002-09-28 20:44:23 +0000
commitcc878f43b9a91385ca3671f17a08253b8464c039 (patch)
treeeb9a65cb67884ace37f2887ceb5bab78d489e182
parente35a5da3a75c74ab066bff5e0f60d30deb008451 (diff)
downloadsamba-cc878f43b9a91385ca3671f17a08253b8464c039.tar.gz
Fixing path to libsmbclient.h so it never gets crossed with a system installed one.
-rw-r--r--source/libsmb/libsmb_cache.c2
-rw-r--r--source/libsmb/libsmb_compat.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/libsmb/libsmb_cache.c b/source/libsmb/libsmb_cache.c
index df02cf3718f..b1620042f38 100644
--- a/source/libsmb/libsmb_cache.c
+++ b/source/libsmb/libsmb_cache.c
@@ -27,7 +27,7 @@
* Define this to get the real SMBCFILE and SMBCSRV structures
*/
#define _SMBC_INTERNAL
-#include "libsmbclient.h"
+#include "../include/libsmbclient.h"
/*
* Structure we use if internal caching mechanism is used
diff --git a/source/libsmb/libsmb_compat.c b/source/libsmb/libsmb_compat.c
index dbfd8603584..bba90c648eb 100644
--- a/source/libsmb/libsmb_compat.c
+++ b/source/libsmb/libsmb_compat.c
@@ -28,7 +28,7 @@
* Define this to get the real SMBCFILE and SMBCSRV structures
*/
#define _SMBC_INTERNAL
-#include "libsmbclient.h"
+#include "../include/libsmbclient.h"
struct smbc_compat_fdlist {
SMBCFILE * file;