diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-31 17:16:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:27 -0500 |
commit | ca3f70256ac0430e2db846d0293a7750a6d3ef6b (patch) | |
tree | e5b29b99c6164bb2a077b8b608c9b4966bcbb55d /source4/include | |
parent | 3b6fb593144290d5bf97d601ae99708880ff781f (diff) | |
download | samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.tar.gz samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.tar.bz2 samba-ca3f70256ac0430e2db846d0293a7750a6d3ef6b.zip |
r5145: define struct ipv4_addr in misc.idl,
so we can use it in nbt.idl and
get a nicer debug output
metze
(This used to be commit abacbc9192646f6f3c720758ab65889b82b9ae7b)
Diffstat (limited to 'source4/include')
-rw-r--r-- | source4/include/includes.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index ce24525158..a185669abd 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -91,14 +91,6 @@ typedef int BOOL; -/* - we use struct ipv4_addr to avoid having to include all the - system networking headers everywhere -*/ -struct ipv4_addr { - uint32_t addr; -}; - #ifndef HAVE_STRERROR extern char *sys_errlist[]; #define strerror(i) sys_errlist[i] @@ -126,7 +118,6 @@ extern int errno; #include "pstring.h" #include "smb_macros.h" #include "smb.h" -#include "ads.h" #include "lib/socket/socket.h" #include "libcli/ldap/ldap.h" #include "byteorder.h" @@ -142,6 +133,7 @@ extern int errno; #include "ntvfs/ntvfs.h" #include "cli_context.h" #include "nsswitch/winbind_client.h" +#include "ads.h" #define malloc_p(type) (type *)malloc(sizeof(type)) #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count) |