summaryrefslogtreecommitdiffstats
path: root/kresources
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-27 21:38:57 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-27 21:38:57 +0000
commit029d6084e699568256c53a8270cb36ad4f66b935 (patch)
tree4f95db8e3813306493e454f753180f6933ba2538 /kresources
parent018997dddf59bef4b6686d477207137aa39089de (diff)
downloadtdepim-029d6084e699568256c53a8270cb36ad4f66b935.tar.gz
tdepim-029d6084e699568256c53a8270cb36ad4f66b935.zip
Fix a number of accidental tqStatus string conversions
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1249829 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kresources')
-rw-r--r--kresources/groupwise/soap/stdsoap2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kresources/groupwise/soap/stdsoap2.cpp b/kresources/groupwise/soap/stdsoap2.cpp
index 959ada87..2852eb9c 100644
--- a/kresources/groupwise/soap/stdsoap2.cpp
+++ b/kresources/groupwise/soap/stdsoap2.cpp
@@ -11951,7 +11951,7 @@ http_response(struct soap *soap, int status, size_t count)
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
}
- else if ((err = soap->fposthdr(soap, "tqStatus", "200 OK")))
+ else if ((err = soap->fposthdr(soap, "Status", "200 OK")))
return err;
}
else if (status > 200 && status < 600)
@@ -11986,7 +11986,7 @@ http_response(struct soap *soap, int status, size_t count)
if ((err = soap->fposthdr(soap, soap->tmpbuf, NULL)))
return err;
}
- else if ((err = soap->fposthdr(soap, "tqStatus", s)))
+ else if ((err = soap->fposthdr(soap, "Status", s)))
return err;
}
if ((err = soap->fposthdr(soap, "Server", "gSOAP/2.7"))