diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 13:01:19 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:09 +0200 |
commit | fe526bb32b7d65be10a05d2525b36f004215b003 (patch) | |
tree | ad05557880529acfe09c4ffb8bd30ffdac6a55a1 /libgpo | |
parent | b74fe73a6fb5862121235f18bc1dfe538e6ceaed (diff) | |
download | samba-fe526bb32b7d65be10a05d2525b36f004215b003.tar.gz samba-fe526bb32b7d65be10a05d2525b36f004215b003.tar.bz2 samba-fe526bb32b7d65be10a05d2525b36f004215b003.zip |
build: Remove sys_opendir wrapper
Diffstat (limited to 'libgpo')
-rw-r--r-- | libgpo/gpext/gpext.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgpo/gpext/gpext.c b/libgpo/gpext/gpext.c index 1f86b5f5d7..165e10ad49 100644 --- a/libgpo/gpext/gpext.c +++ b/libgpo/gpext/gpext.c @@ -490,7 +490,7 @@ static NTSTATUS gp_glob_ext_list(TALLOC_CTX *mem_ctx, SMB_STRUCT_DIR *dir = NULL; SMB_STRUCT_DIRENT *dirent = NULL; - dir = sys_opendir(modules_path(talloc_tos(), + dir = opendir(modules_path(talloc_tos(), SAMBA_SUBSYSTEM_GPEXT)); if (!dir) { return map_nt_error_from_unix_common(errno); |