From b023560577175bfa769e30da8445dc208ab28326 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 4 Sep 2012 11:04:16 +0200 Subject: [PATCH] file_server: use 'subreq' as variable instead of 'req' This matches the style of all other tevent_req users. metze --- file_server/file_server.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/file_server/file_server.c b/file_server/file_server.c index a3efcb2418d6..1d8bc2e25292 100644 --- a/file_server/file_server.c +++ b/file_server/file_server.c @@ -96,7 +96,7 @@ static void file_server_smbd_done(struct tevent_req *subreq) static void s3fs_task_init(struct task_server *task) { const char *fileserver_conf; - struct tevent_req *req; + struct tevent_req *subreq; const char *smbd_path; const char *smbd_cmd[2] = { NULL, NULL }; @@ -109,18 +109,18 @@ static void s3fs_task_init(struct task_server *task) smbd_cmd[0] = smbd_path; /* start it as a child process */ - req = samba_runcmd_send(task, task->event_ctx, timeval_zero(), 1, 0, + subreq = samba_runcmd_send(task, task->event_ctx, timeval_zero(), 1, 0, smbd_cmd, "--configfile", fileserver_conf, "--foreground", debug_get_output_is_stdout()?"--log-stdout":NULL, NULL); - if (req == NULL) { + if (subreq == NULL) { DEBUG(0, ("Failed to start smbd as child daemon\n")); goto failed; } - tevent_req_set_callback(req, file_server_smbd_done, task); + tevent_req_set_callback(subreq, file_server_smbd_done, task); DEBUG(1,("Started file server smbd with config %s\n", fileserver_conf)); return; -- 2.34.1