1From 92210452ee8f336c6121ee2a4d6ffae8a085db15 Mon Sep 17 00:00:00 2001
2From: Michael Forney <mforney@mforney.org>
3Date: Mon, 6 Sep 2021 23:22:16 -0700
4Subject: [PATCH] Prevent unused-label warning with IGNORE_MTAB
5
6---
7 lib/mount.c | 2 ++
8 1 file changed, 2 insertions(+)
9
10diff --git a/lib/mount.c b/lib/mount.c
11index 979f8d9..a51731f 100644
12--- a/lib/mount.c
13+++ b/lib/mount.c
14@@ -500,8 +500,10 @@ static int fuse_mount_sys(const char *mnt, struct mount_opts *mo,
15
16 return fd;
17
18+#ifndef IGNORE_MTAB
19 out_umount:
20 umount2(mnt, 2); /* lazy umount */
21+#endif
22 out_close:
23 free(type);
24 free(source);
25--
262.32.0
27