From d86acf5e9930ee5cdf5150f30b51701fc81c2204 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Tue, 18 Dec 2012 10:40:56 -0600 Subject: [PATCH] Remove is_daemon field in message handler context --- src/mount_image.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/mount_image.c b/src/mount_image.c index 3f1e9934..e361ddb8 100644 --- a/src/mount_image.c +++ b/src/mount_image.c @@ -1017,7 +1017,6 @@ enum { }; struct msg_handler_context { - bool is_daemon; int timeout_seconds; union { struct { @@ -1464,7 +1463,6 @@ static void wimfs_destroy(void *p) return; struct msg_handler_context handler_ctx = { - .is_daemon = true, .timeout_seconds = 5, .daemon = { .wimfs_ctx = wimfs_ctx, @@ -2523,7 +2521,6 @@ WIMLIBAPI int wimlib_unmount_image(const char *dir, int unmount_flags, goto out_close_message_queues; struct msg_handler_context handler_ctx = { - .is_daemon = false, .timeout_seconds = 5, .unmount = { .daemon_pid = 0, -- 2.43.0