From 39d7983a470cc3470dd7126de35697d965817cb6 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 12 Sep 2001 03:08:51 +0000 Subject: - enable MSDFS by default, there seems no reason not to have it enabled by default in Samba 3.x - got rid of some unused parameters in Makefile.in - declare DEBUGLEVEL in debug.h rather than in each file (This used to be commit b8651acb9c0d7248a6a2e82c33b1e43633fd83fd) --- source3/include/msdfs.h | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'source3/include/msdfs.h') diff --git a/source3/include/msdfs.h b/source3/include/msdfs.h index 0748577b0b..df2ea5a6e4 100644 --- a/source3/include/msdfs.h +++ b/source3/include/msdfs.h @@ -59,8 +59,6 @@ struct dfs_path pstring restofthepath; }; -#ifdef WITH_MSDFS - #define RESOLVE_DFSPATH(name, conn, inbuf, outbuf) \ { if(((SVAL(inbuf,smb_flg2) & FLAGS2_DFS_PATHNAMES)) && \ dfs_redirect(name,conn)) \ @@ -77,12 +75,4 @@ struct dfs_path SSVAL(outbuf, smb_vwv2, SMB_SHARE_IN_DFS | SMB_SUPPORT_SEARCH_BITS); \ } -#else -/* Stub macros */ -#define RESOLVE_DFSPATH(name, conn, inbuf, outbuf) ; -#define RESOLVE_FINDFIRST_DFSPATH(name, conn, inbuf, outbuf) ; -#define init_dfsroot(conn, inbuf, outbuf) ; - -#endif - #endif /* _MSDFS_H */ -- cgit