Blame SOURCES/0026-v2v-Fix-spelling-mistake-in-uninstall-function-name.patch

7ed5e3
From 358122c089d1e4df014a6821365341d3220ab6e6 Mon Sep 17 00:00:00 2001
7ed5e3
From: "Richard W.M. Jones" <rjones@redhat.com>
7ed5e3
Date: Tue, 19 Jan 2021 11:26:23 +0000
7ed5e3
Subject: [PATCH] v2v: Fix spelling mistake in uninstall function name.
7ed5e3
7ed5e3
Fixes: commit 53847717fa1d0ffc2a174275badf486eb1ed6fae
7ed5e3
(cherry picked from commit 3515c9f617271bec89962ba8a2b8c690e6df4c99)
7ed5e3
---
7ed5e3
 v2v/convert_windows.ml | 6 +++---
7ed5e3
 1 file changed, 3 insertions(+), 3 deletions(-)
7ed5e3
7ed5e3
diff --git a/v2v/convert_windows.ml b/v2v/convert_windows.ml
7ed5e3
index ba26949f..f2f7b95c 100644
7ed5e3
--- a/v2v/convert_windows.ml
7ed5e3
+++ b/v2v/convert_windows.ml
7ed5e3
@@ -135,7 +135,7 @@ let convert (g : G.guestfs) inspect _ output rcaps static_ips =
7ed5e3
   (* Locate and retrieve all the uninstallation commands for installed
7ed5e3
    * applications.
7ed5e3
    *)
7ed5e3
-  let unistallation_commands pretty_name matchfn extra_uninstall_string =
7ed5e3
+  let uninstallation_commands pretty_name matchfn extra_uninstall_string =
7ed5e3
     let uninsts = ref [] in
7ed5e3
 
7ed5e3
     Registry.with_hive_readonly g inspect.i_windows_software_hive
7ed5e3
@@ -198,14 +198,14 @@ let convert (g : G.guestfs) inspect _ output rcaps static_ips =
7ed5e3
      *)
7ed5e3
     let extra_uninstall_string =
7ed5e3
       Some "PREVENT_REBOOT=Yes LAUNCHED_BY_SETUP_EXE=Yes" in
7ed5e3
-    unistallation_commands "Parallels Tools" matchfn extra_uninstall_string in
7ed5e3
+    uninstallation_commands "Parallels Tools" matchfn extra_uninstall_string in
7ed5e3
 
7ed5e3
   (* Locate and retrieve all uninstallation commands for VMware Tools. *)
7ed5e3
   let vmwaretools_uninst =
7ed5e3
     let matchfn s =
7ed5e3
       String.find s "VMware Tools" != -1
7ed5e3
     in
7ed5e3
-    unistallation_commands "VMware Tools" matchfn None in
7ed5e3
+    uninstallation_commands "VMware Tools" matchfn None in
7ed5e3
 
7ed5e3
   (*----------------------------------------------------------------------*)
7ed5e3
   (* Perform the conversion of the Windows guest. *)
7ed5e3
-- 
446330
2.27.0
7ed5e3