From 9f97dbcad968b1cf004a2d98c194077059c0dc4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Moreau?= Date: Sun, 21 Aug 2011 12:56:18 -0400 Subject: [PATCH] libfreerdp-core: fix glyph cache capability set --- libfreerdp-core/capabilities.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libfreerdp-core/capabilities.c b/libfreerdp-core/capabilities.c index 57f25854d..40e5997d3 100644 --- a/libfreerdp-core/capabilities.c +++ b/libfreerdp-core/capabilities.c @@ -781,7 +781,7 @@ void rdp_write_glyph_cache_capability_set(STREAM* s, rdpSettings* settings) rdp_write_cache_definition(s, 64, 2048); /* fragCache */ - stream_write_uint16(s, GLYPH_SUPPORT_FULL); /* glyphSupportLevel (2 bytes) */ + stream_write_uint16(s, GLYPH_SUPPORT_NONE); /* glyphSupportLevel (2 bytes) */ stream_write_uint16(s, 0); /* pad2Octets (2 bytes) */ rdp_capability_set_finish(s, header, CAPSET_TYPE_GLYPH_CACHE);