diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-03-31 09:47:57 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:59:25 -0500 |
commit | 05c53f70f0e4b94cf26a433cb61b1706f7715757 (patch) | |
tree | c249cc74234162322cbc47b195a18b35646b3927 | |
parent | e7dc4c79ad4bf2317d89633b6e6bb965f629667f (diff) | |
download | samba-05c53f70f0e4b94cf26a433cb61b1706f7715757.tar.gz samba-05c53f70f0e4b94cf26a433cb61b1706f7715757.tar.bz2 samba-05c53f70f0e4b94cf26a433cb61b1706f7715757.zip |
r14838: fix the build. Looks like I still haven't quite got the hang of the
new dependency/proto system :-)
(This used to be commit 63ae3f21e3471895ba83df1c2fdc4147090f7fdb)
-rw-r--r-- | source4/ntvfs/common/config.mk | 2 | ||||
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.h | 1 | ||||
-rw-r--r-- | source4/ntvfs/unixuid/vfs_unixuid.c | 1 | ||||
-rw-r--r-- | source4/rpc_server/lsa/dcesrv_lsa.c | 1 | ||||
-rw-r--r-- | source4/rpc_server/unixinfo/dcesrv_unixinfo.c | 1 |
5 files changed, 5 insertions, 1 deletions
diff --git a/source4/ntvfs/common/config.mk b/source4/ntvfs/common/config.mk index e10f0fc8c1..6eb9073b73 100644 --- a/source4/ntvfs/common/config.mk +++ b/source4/ntvfs/common/config.mk @@ -2,7 +2,7 @@ # Start MODULE ntvfs_common [MODULE::ntvfs_common] SUBSYSTEM = ntvfs -PRIVATE_PROTO_HEADER = vfs_common_proto.h +PRIVATE_PROTO_HEADER = proto.h OBJ_FILES = \ brlock.o \ opendb.o \ diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h index 00ae92a95a..f34529bc0f 100644 --- a/source4/ntvfs/posix/vfs_posix.h +++ b/source4/ntvfs/posix/vfs_posix.h @@ -26,6 +26,7 @@ #include "librpc/gen_ndr/xattr.h" #include "system/filesys.h" #include "ntvfs/ntvfs.h" +#include "ntvfs/common/proto.h" /* this is the private structure for the posix vfs backend. It is used to hold per-connection (per tree connect) state information */ diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c index 9d8b058b7a..1bfaf85e70 100644 --- a/source4/ntvfs/unixuid/vfs_unixuid.c +++ b/source4/ntvfs/unixuid/vfs_unixuid.c @@ -26,6 +26,7 @@ #include "system/passwd.h" #include "auth/auth.h" #include "ntvfs/ntvfs.h" +#include "ntvfs/common/proto.h" struct unixuid_private { struct sidmap_context *sidmap; diff --git a/source4/rpc_server/lsa/dcesrv_lsa.c b/source4/rpc_server/lsa/dcesrv_lsa.c index 72630a928a..c3debc88be 100644 --- a/source4/rpc_server/lsa/dcesrv_lsa.c +++ b/source4/rpc_server/lsa/dcesrv_lsa.c @@ -33,6 +33,7 @@ #include "ntvfs/ntvfs.h" #include "passdb/secrets.h" #include "db_wrap.h" +#include "ntvfs/common/proto.h" /* this type allows us to distinguish handle types diff --git a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c index 1224daa76a..57562e940f 100644 --- a/source4/rpc_server/unixinfo/dcesrv_unixinfo.c +++ b/source4/rpc_server/unixinfo/dcesrv_unixinfo.c @@ -26,6 +26,7 @@ #include "librpc/gen_ndr/ndr_unixinfo.h" #include "lib/events/events.h" #include "ntvfs/ntvfs.h" +#include "ntvfs/common/proto.h" #include <sys/types.h> #include <pwd.h> |