From 8195832c6cde7ebb2de5543be76979a111bd5712 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 22 Mar 2010 09:16:57 +0100 Subject: s3: file_walk_table -> files_forall This is more in line with the rest of the Samba code, like connections_forall etc. --- source3/modules/vfs_aio_fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/modules') 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); } -- cgit