Actions
Bug #3600
closedWt::Http::Client request adding headers
Start date:
09/22/2014
Due date:
% Done:
0%
Estimated time:
Description
Client.C line: 79 is incorrect, should be changed from:
for (unsigned i = 0; i < message.headers().size(); ++i) {
to
for (unsigned i = 0; i < message.headers().size(); i) {
Updated by Koen Deforche about 10 years ago
- Status changed from New to Feedback
- Assignee set to Koen Deforche
Hey,
That's exactly the same?
Regards,
koen
Updated by Wim Dumon about 10 years ago
I believe Koen means that there's no semantic difference between +i and i+ in this case.
Wim.
Updated by Koen Deforche about 10 years ago
- Status changed from Feedback to Closed
Actions