From 91abebf92e5842b8296d6be2e36ec8e72ca505f5 Mon Sep 17 00:00:00 2001 From: Dov Murik Date: Wed, 22 Dec 2021 09:01:59 +0200 Subject: [PATCH] agent: mount: Remove unneeded mount_point local variable We already have a `mount_path` local Path variable which holds the mount point. Use it instead of creating a new `mount_point` variable with identical type and content. Fixes: #3332 Signed-off-by: Dov Murik --- src/agent/src/mount.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/agent/src/mount.rs b/src/agent/src/mount.rs index d2ab2b1320..6df33c422a 100644 --- a/src/agent/src/mount.rs +++ b/src/agent/src/mount.rs @@ -449,18 +449,17 @@ fn mount_storage(logger: &Logger, storage: &Storage) -> Result<()> { let (flags, options) = parse_mount_flags_and_options(options_vec); let source = Path::new(&storage.source); - let mount_point = Path::new(&storage.mount_point); info!(logger, "mounting storage"; "mount-source" => source.display(), - "mount-destination" => mount_point.display(), + "mount-destination" => mount_path.display(), "mount-fstype" => storage.fstype.as_str(), "mount-options" => options.as_str(), ); baremount( source, - mount_point, + mount_path, storage.fstype.as_str(), flags, options.as_str(),