]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemu_rdp: Fix a typo existance -> existence
authorMartin Kletzander <mkletzan@redhat.com>
Wed, 16 Apr 2025 08:04:34 +0000 (10:04 +0200)
committerMartin Kletzander <mkletzan@redhat.com>
Wed, 16 Apr 2025 08:14:40 +0000 (10:14 +0200)
Fixes: bd473480b443aa2561236dfd903535aa778d99a8
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
Reviewed-by: Jiri Denemark <jdenemar@redhat.com>
src/qemu/qemu_rdp.c

index 0c48b87e7bad002a5fd4e4b6268c4ed44c49ff63..919f5788bf8f6291d50fce5cb339bc2327d32680 100644 (file)
@@ -432,6 +432,6 @@ qemuRdpAvailable(const char *helper)
     g_autofree char *helperPath = NULL;
 
     /* This function was added corresponding to the first release of 'qemu-rdp'
-     * thus checking existance of the helper binary is sufficient. */
+     * thus checking existence of the helper binary is sufficient. */
     return !!(helperPath = virFindFileInPath(helper));
 }