summaryrefslogtreecommitdiff
path: root/source3/lib/system.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-03-28 13:01:19 +1100
committerAndrew Bartlett <abartlet@samba.org>2012-04-05 02:39:09 +0200
commitfe526bb32b7d65be10a05d2525b36f004215b003 (patch)
treead05557880529acfe09c4ffb8bd30ffdac6a55a1 /source3/lib/system.c
parentb74fe73a6fb5862121235f18bc1dfe538e6ceaed (diff)
downloadsamba-fe526bb32b7d65be10a05d2525b36f004215b003.tar.gz
samba-fe526bb32b7d65be10a05d2525b36f004215b003.tar.bz2
samba-fe526bb32b7d65be10a05d2525b36f004215b003.zip
build: Remove sys_opendir wrapper
Diffstat (limited to 'source3/lib/system.c')
-rw-r--r--source3/lib/system.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/source3/lib/system.c b/source3/lib/system.c
index 421beb53fd..9705dda697 100644
--- a/source3/lib/system.c
+++ b/source3/lib/system.c
@@ -618,15 +618,6 @@ void kernel_flock(int fd, uint32 share_mode, uint32 access_mask)
/*******************************************************************
- An opendir wrapper.
-********************************************************************/
-
-SMB_STRUCT_DIR *sys_opendir(const char *name)
-{
- return opendir(name);
-}
-
-/*******************************************************************
An fdopendir wrapper.
Ugly hack - we need dirfd for this to work correctly in the
calling code.. JRA.