diff options
author | Christopher R. Hertel <crh@samba.org> | 1997-10-17 21:06:20 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1997-10-17 21:06:20 +0000 |
commit | 10087a663bfda233d3e18137f469f0cc7e769a0a (patch) | |
tree | 1f7ecfd66ed0ca75f94b913294cb97861519f10f | |
parent | 545d6e5a3022e2d1cd4546d7b8b88c08042d3bbb (diff) | |
download | samba-10087a663bfda233d3e18137f469f0cc7e769a0a.tar.gz samba-10087a663bfda233d3e18137f469f0cc7e769a0a.tar.bz2 samba-10087a663bfda233d3e18137f469f0cc7e769a0a.zip |
Simply moved the #include for ubi_dLinkList.h from within dir.c to
includes.h. More consistent with current practice.
(This used to be commit cb51c860b352fb9d07fb3298d0317274ba6c9925)
-rw-r--r-- | source3/include/includes.h | 1 | ||||
-rw-r--r-- | source3/smbd/dir.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index a877f1ffb3..ce02b8a02a 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -117,6 +117,7 @@ by the previous section */ #include "local.h" +#include "ubi_dLinkList.h" #include <stdio.h> #ifdef POSIX_STDLIBH #include <posix/stdlib.h> diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c index d69ccfe1c1..c12305499a 100644 --- a/source3/smbd/dir.c +++ b/source3/smbd/dir.c @@ -634,8 +634,6 @@ int TellDir(void *p) * -------------------------------------------------------------------------- ** */ -#include "ubi_dLinkList.h" - typedef struct { ubi_dlNode node; |