diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 13:03:00 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:09 +0200 |
commit | afdb78075c29774c550625e1115ffb7eaf6e015a (patch) | |
tree | 68e98888ad009f9bfaaf97cb62f3ad1d44c3941c /libgpo/gpext | |
parent | fe526bb32b7d65be10a05d2525b36f004215b003 (diff) | |
download | samba-afdb78075c29774c550625e1115ffb7eaf6e015a.tar.gz samba-afdb78075c29774c550625e1115ffb7eaf6e015a.tar.bz2 samba-afdb78075c29774c550625e1115ffb7eaf6e015a.zip |
build: Remove sys_readdir wrapper
Diffstat (limited to 'libgpo/gpext')
-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 165e10ad49..6177bdc710 100644 --- a/libgpo/gpext/gpext.c +++ b/libgpo/gpext/gpext.c @@ -496,7 +496,7 @@ static NTSTATUS gp_glob_ext_list(TALLOC_CTX *mem_ctx, return map_nt_error_from_unix_common(errno); } - while ((dirent = sys_readdir(dir))) { + while ((dirent = readdir(dir))) { fstring name; /* forgive me... */ char *p; |