diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-07-01 12:14:02 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-07-01 12:14:02 +0100 |
commit | 00c1c0ac1fb9258747c56ff77a4a35beb44bd994 (patch) | |
tree | d1ce6fe560ec7b76ec00c9dabe8b17f9761dabb8 | |
parent | cef5a419f4a8f00c6cc0b57d5a01ac347fff9598 (diff) | |
download | dbus-00c1c0ac1fb9258747c56ff77a4a35beb44bd994.tar.gz |
Make the test for #53499 more obviously correct
-rw-r--r-- | dbus/dbus-address.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-address.c b/dbus/dbus-address.c index 6506d213..18f00947 100644 --- a/dbus/dbus-address.c +++ b/dbus/dbus-address.c @@ -680,7 +680,7 @@ static const EscapeTest escape_tests[] = { { "i", "i" }, { "z", "z" }, /* Bug: https://bugs.freedesktop.org/show_bug.cgi?id=53499 */ - { "%c3%b6", "\303\266" } + { "%c3%b6", "\xc3\xb6" } }; static const char* invalid_escaped_values[] = { |