]> Git Repo - qemu.git/commitdiff
ui: Replace the word 'whitelist'
authorPhilippe Mathieu-Daudé <[email protected]>
Wed, 3 Mar 2021 18:46:40 +0000 (19:46 +0100)
committerLaurent Vivier <[email protected]>
Tue, 9 Mar 2021 21:13:32 +0000 (22:13 +0100)
Follow the inclusive terminology from the "Conscious Language in your
Open Source Projects" guidelines [*] and replace the words "whitelist"
appropriately.

[*] https://github.com/conscious-lang/conscious-lang-docs/blob/main/faq.md

Reviewed-by: Gerd Hoffmann <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
Reviewed-by: Thomas Huth <[email protected]>
Signed-off-by: Philippe Mathieu-Daudé <[email protected]>
Message-Id: <20210303184644.1639691[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
ui/console.c
ui/vnc-auth-sasl.c

index 171a7bf14b94fc0d5185fdc68238f8e5e8cf7815..c2fdf975b6b3780bd4983f8a08075623dafc3ff8 100644 (file)
@@ -1724,7 +1724,7 @@ bool dpy_gfx_check_format(QemuConsole *con,
                 return false;
             }
         } else {
-            /* default is to whitelist native 32 bpp only */
+            /* default is to allow native 32 bpp only */
             if (format != qemu_default_pixman_format(32, true)) {
                 return false;
             }
index f67111a3662adb3f1b92a2a5d82df8fe5bbb0fd2..df7dc08e9fc51b010680bd42cf7277d2336a594a 100644 (file)
@@ -288,7 +288,7 @@ static int protocol_client_auth_sasl_step(VncState *vs, uint8_t *data, size_t le
             goto authreject;
         }
 
-        /* Check username whitelist ACL */
+        /* Check the username access control list */
         if (vnc_auth_sasl_check_access(vs) < 0) {
             goto authreject;
         }
@@ -409,7 +409,7 @@ static int protocol_client_auth_sasl_start(VncState *vs, uint8_t *data, size_t l
             goto authreject;
         }
 
-        /* Check username whitelist ACL */
+        /* Check the username access control list */
         if (vnc_auth_sasl_check_access(vs) < 0) {
             goto authreject;
         }
This page took 0.032307 seconds and 4 git commands to generate.