diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-22 09:16:57 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-22 09:30:51 +0100 |
commit | 8195832c6cde7ebb2de5543be76979a111bd5712 (patch) | |
tree | 12bbaa175d7906bc4d2d682efacd1b0af37ab11c /source3/modules | |
parent | 678815081da171e10123b1f6768a554adc1bedb4 (diff) | |
download | samba-8195832c6cde7ebb2de5543be76979a111bd5712.tar.gz samba-8195832c6cde7ebb2de5543be76979a111bd5712.tar.bz2 samba-8195832c6cde7ebb2de5543be76979a111bd5712.zip |
s3: file_walk_table -> files_forall
This is more in line with the rest of the Samba code, like connections_forall
etc.
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_aio_fork.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c index c725fa6b90..ebad4b4c43 100644 --- a/source3/modules/vfs_aio_fork.c +++ b/source3/modules/vfs_aio_fork.c @@ -479,7 +479,7 @@ static NTSTATUS create_aio_child(struct aio_child_list *children, if (result->pid == 0) { close(fdpair[0]); result->sockfd = fdpair[1]; - file_walk_table(close_fsp_fd, NULL); + files_forall(close_fsp_fd, NULL); aio_child_loop(result->sockfd, result->map); } |