diff options
| author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 13:22:03 +1100 | 
|---|---|---|
| committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:09 +0200 | 
| commit | f6e053202481631b12d75f6a552ee1aa8b355064 (patch) | |
| tree | f029e300d5005e87774a3d1c6390423d0c09f9fd /source3/lib | |
| parent | 2320b2144fcb1236c082278444e3c6df998e17ec (diff) | |
| download | samba-f6e053202481631b12d75f6a552ee1aa8b355064.tar.gz samba-f6e053202481631b12d75f6a552ee1aa8b355064.tar.bz2 samba-f6e053202481631b12d75f6a552ee1aa8b355064.zip  | |
build: Remove SMB_STRUCT_DIR define
Diffstat (limited to 'source3/lib')
| -rw-r--r-- | source3/lib/system.c | 2 | ||||
| -rw-r--r-- | source3/lib/util.c | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c index 1988088ba5..5ba3aebd69 100644 --- a/source3/lib/system.c +++ b/source3/lib/system.c @@ -623,7 +623,7 @@ void kernel_flock(int fd, uint32 share_mode, uint32 access_mask)   calling code.. JRA.  ********************************************************************/ -SMB_STRUCT_DIR *sys_fdopendir(int fd) +DIR *sys_fdopendir(int fd)  {  #if defined(HAVE_FDOPENDIR) && defined(HAVE_DIRFD)  	return fdopendir(fd); diff --git a/source3/lib/util.c b/source3/lib/util.c index b727f7b3d8..edad75d646 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1029,7 +1029,7 @@ libunwind_failed:    A readdir wrapper which just returns the file name.   ********************************************************************/ -const char *readdirname(SMB_STRUCT_DIR *p) +const char *readdirname(DIR *p)  {  	struct dirent *ptr;  	char *dname;  | 
