2008-10-10 Alexander Larsson <alexl@redhat.com>
* gfileattribute.c (escape_byte_string):
Upper half of byte is >> 4, not >> 8.
Found by Kjartan Maraas via sparse
svn path=/trunk/; revision=7590
+2008-10-10 Alexander Larsson <alexl@redhat.com>
+
+ * gfileattribute.c (escape_byte_string):
+ Upper half of byte is >> 4, not >> 8.
+ Found by Kjartan Maraas via sparse
+
2008-10-10 Matthias Clasen <mclasen@redhat.com>
Bug 555711 – Wrong fallback order of mimetype icons
{
*p++ = '\\';
*p++ = 'x';
- *p++ = hex_digits[(c >> 8) & 0xf];
+ *p++ = hex_digits[(c >> 4) & 0xf];
*p++ = hex_digits[c & 0xf];
}
}