diff options
author | click <none@none> | 2010-12-21 18:40:54 +0100 |
---|---|---|
committer | click <none@none> | 2010-12-21 18:40:54 +0100 |
commit | 31334b8770cca2e2041c8fd3565e3abba8a34d88 (patch) | |
tree | fa3af62466ca7afed7d484924e0db6b544ce0831 /dep/gsoap | |
parent | 186ec40571bfba8839fe5148c7fde512418a3f85 (diff) |
Core/Dependencies: Temporarily fix an RFC-breaking addition in gSoap (upstream developers have been notified)
+ local changes and diff (tc_changes.diff) included for future reference
--HG--
branch : trunk
Diffstat (limited to 'dep/gsoap')
-rw-r--r-- | dep/gsoap/stdsoap2.cpp | 2 | ||||
-rw-r--r-- | dep/gsoap/tc_changes.diff | 16 |
2 files changed, 18 insertions, 0 deletions
diff --git a/dep/gsoap/stdsoap2.cpp b/dep/gsoap/stdsoap2.cpp index 834a4b8b4ef..88e44615c3f 100644 --- a/dep/gsoap/stdsoap2.cpp +++ b/dep/gsoap/stdsoap2.cpp @@ -15038,10 +15038,12 @@ soap_puthttphdr(struct soap *soap, int status, size_t count) } s = soap->tmpbuf; } +/* else if (status == SOAP_OK && soap->action && strlen(soap->action) < sizeof(soap->tmpbuf) - 80) { sprintf(soap->tmpbuf, "%s; action=\"%s\"", s, soap->action); s = soap->tmpbuf; } +*/ #endif if (s && (err = soap->fposthdr(soap, "Content-Type", s))) return err; diff --git a/dep/gsoap/tc_changes.diff b/dep/gsoap/tc_changes.diff new file mode 100644 index 00000000000..e5c47c66b78 --- /dev/null +++ b/dep/gsoap/tc_changes.diff @@ -0,0 +1,16 @@ +diff -r 830b8f9ed332 dep/gsoap/stdsoap2.cpp +--- a/dep/gsoap/stdsoap2.cpp Tue Dec 21 10:07:43 2010 -0500 ++++ b/dep/gsoap/stdsoap2.cpp Tue Dec 21 10:07:55 2010 -0500 +@@ -15038,10 +15038,12 @@ + } + s = soap->tmpbuf; + } ++/* + else if (status == SOAP_OK && soap->action && strlen(soap->action) < sizeof(soap->tmpbuf) - 80) + { sprintf(soap->tmpbuf, "%s; action=\"%s\"", s, soap->action); + s = soap->tmpbuf; + } ++*/ + #endif + if (s && (err = soap->fposthdr(soap, "Content-Type", s))) + return err; |