diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-27 11:15:03 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:20:23 -0500 |
commit | c09504ac33a319a48db608b914a05f2049b53550 (patch) | |
tree | 851e5f7d6caeb3f5d20e0eda8df9417a28de3f44 /source4 | |
parent | 174742a74ce448d1944ada9dd602aadf20bce6f8 (diff) | |
download | samba-c09504ac33a319a48db608b914a05f2049b53550.tar.gz samba-c09504ac33a319a48db608b914a05f2049b53550.tar.bz2 samba-c09504ac33a319a48db608b914a05f2049b53550.zip |
r18948: fix the build on solaris, the ioctl() prototype
in unistd.h was included after libreplace defined ioctl swrap_ioctl
metze
(This used to be commit 55b25a9fcfa5ddf290e371c2bcad8ad07969f19a)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/tdr/tdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/tdr/tdr.c b/source4/lib/tdr/tdr.c index e108473708..22893b18ea 100644 --- a/source4/lib/tdr/tdr.c +++ b/source4/lib/tdr/tdr.c @@ -22,8 +22,8 @@ */ #include "includes.h" -#include "system/network.h" #include "system/filesys.h" +#include "system/network.h" #include "tdr/tdr.h" #define TDR_BASE_MARSHALL_SIZE 1024 |