diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-26 13:17:50 -0600 |
commit | b363d2579af0a11b77e698aed2e1021c2233b644 (patch) | |
tree | f4a47b87354b7a6a3b266c8121bd8ddaeb7accaa /kresources/groupwise/soap/patches/utf8_entities.diff | |
parent | 61bddfe3a7226b18c68a76124b727c736f431688 (diff) | |
download | tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.tar.gz tdepim-b363d2579af0a11b77e698aed2e1021c2233b644.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'kresources/groupwise/soap/patches/utf8_entities.diff')
-rw-r--r-- | kresources/groupwise/soap/patches/utf8_entities.diff | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/kresources/groupwise/soap/patches/utf8_entities.diff b/kresources/groupwise/soap/patches/utf8_entities.diff deleted file mode 100644 index b8600a9d..00000000 --- a/kresources/groupwise/soap/patches/utf8_entities.diff +++ /dev/null @@ -1,15 +0,0 @@ ---- kresources/groupwise/soap/stdsoap2.cpp -+++ kresources/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; - } |