diff options
author | Robert Ancell <robert.ancell@gmail.com> | 2012-01-11 17:03:47 +0100 |
---|---|---|
committer | Julien Danjou <julien@danjou.info> | 2012-01-11 17:03:47 +0100 |
commit | 08eb095955b1ea6a23df268a38b434f403a10229 (patch) | |
tree | a3633415c88b6921129a67c237100019b759c516 | |
parent | e4dec4873ad79b0b06bfe91fa423f2a554a586bb (diff) |
Fix ChangeHosts address string
ChangeHosts incorrectly encodes address as a string, not a binary blob. It
should be the same as in the HOSTS structure.
Fixes #43604
Signed-off-by: Julien Danjou <julien@danjou.info>
-rw-r--r-- | src/xproto.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xproto.xml b/src/xproto.xml index cbb5fa2..7b307b7 100644 --- a/src/xproto.xml +++ b/src/xproto.xml @@ -2295,7 +2295,7 @@ authorization from the authors. <field type="CARD8" name="family" enum="Family" /> <pad bytes="1" /> <field type="CARD16" name="address_len" /> - <list type="char" name="address"> + <list type="BYTE" name="address"> <fieldref>address_len</fieldref> </list> </request> |