1
0
Fork 0

settings: Fix spelling of endianness

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2813>
This commit is contained in:
Anders Jonsson 2023-01-29 17:37:43 +01:00
parent b6e38c4b45
commit 0d6b0fc165
2 changed files with 4 additions and 4 deletions

View file

@ -127,9 +127,9 @@
<key name="xwayland-allow-byte-swapped-clients" type="b"> <key name="xwayland-allow-byte-swapped-clients" type="b">
<default>false</default> <default>false</default>
<summary>Allow X11 clients with a different endianess to connect to Xwayland</summary> <summary>Allow X11 clients with a different endianness to connect to Xwayland</summary>
<description> <description>
Allow connections from clients with an endianess different to that Allow connections from clients with an endianness different to that
of Xwayland. of Xwayland.
The X server byte-swapping code is a huge attack surface, much of The X server byte-swapping code is a huge attack surface, much of
@ -139,7 +139,7 @@
default in Xwayland. default in Xwayland.
Enable this option to instruct Xwayland to accept connections from Enable this option to instruct Xwayland to accept connections from
X11 clients with a different endianess. X11 clients with a different endianness.
This option has no effect if Xwayland does not support the command This option has no effect if Xwayland does not support the command
line option +byteswappedclients/-byteswappedclients to control that line option +byteswappedclients/-byteswappedclients to control that

View file

@ -75,7 +75,7 @@ struct _MetaSettings
/* A bitmask of MetaXwaylandExtension enum */ /* A bitmask of MetaXwaylandExtension enum */
int xwayland_disable_extensions; int xwayland_disable_extensions;
/* Whether Xwayland should allow X11 clients from different endianess */ /* Whether Xwayland should allow X11 clients from different endianness */
gboolean xwayland_allow_byte_swapped_clients; gboolean xwayland_allow_byte_swapped_clients;
}; };