xmlrpc-c/xmlrpc-c-1.05-typo.patch
ensc 4c4dfa4ddb - updated to 1.05
- updated patches
2006-06-04 16:21:22 +00:00

27 lines
1.2 KiB
Diff

2006-06-04 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
* include/xmlrpc-c/client.hpp, src/cpp/client.cpp: fixed typo
in paramlist of the virtual client_xml::start() method.
--- xmlrpc-c-1.05/include/xmlrpc-c/client.hpp.typo 2006-03-23 00:45:34.000000000 +0100
+++ xmlrpc-c-1.05/include/xmlrpc-c/client.hpp 2006-06-04 14:26:10.000000000 +0200
@@ -150,7 +150,7 @@ public:
void
start(xmlrpc_c::carriageParm * const carriageParmP,
- std::string const methodName,
+ std::string const& methodName,
xmlrpc_c::paramList const& paramList,
xmlrpc_c::clientTransactionPtr const& tranP);
--- xmlrpc-c-1.05/src/cpp/client.cpp.typo 2006-03-23 00:44:44.000000000 +0100
+++ xmlrpc-c-1.05/src/cpp/client.cpp 2006-06-04 14:27:40.000000000 +0200
@@ -585,7 +585,7 @@ client_xml::call(carriageParm * const c
void
client_xml::start(carriageParm * const carriageParmP,
- string const methodName,
+ string const& methodName,
paramList const& paramList,
clientTransactionPtr const& tranP) {