You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdepim/tderesources/groupwise/soap/patches/utf8_entities.diff

16 lines
453 B

--- tderesources/groupwise/soap/stdsoap2.cpp
+++ tderesources/groupwise/soap/stdsoap2.cpp 2004/10/15 12:42:53
@@ -6470,7 +6470,11 @@
}
#endif
if (c & mask)
- { if (soap_send_raw(soap, s, t - s - 1) || soap_pututf8(soap, (unsigned char)c))
+ {
+ char S[2];
+ S[0] = c;
+ S[1] = 0;
+ if (soap_send_raw(soap, s, t - s - 1) || soap_send(soap, S) )
return soap->error;
s = t;
}