openbsd-ports/net/xmlrpc-c/patches/patch-src_cpp_test_testclient_cpp
espie 31e4f1d7d2 xmlrpc C/C++ library, prereq for newer cmake.
Also, makes sense to take this code out, as some other stuff is bound
to want this at some point.

This library is incredibly sloppy engineering. Reasonably readable
code, looks sensible, but incredible lack of testing (doesn't even pass
its own testsuite on a stable release... and does a lot of things that
can't work outside of linux... makes you wonder who is actually using
this...)
2006-12-18 14:39:56 +00:00

13 lines
471 B
Plaintext

$OpenBSD: patch-src_cpp_test_testclient_cpp,v 1.1.1.1 2006/12/18 14:39:56 espie Exp $
--- src/cpp/test/testclient.cpp.orig Mon Dec 18 14:21:15 2006
+++ src/cpp/test/testclient.cpp Mon Dec 18 15:21:25 2006
@@ -33,7 +33,7 @@ using namespace std;
class sampleAddMethod : public method {
public:
sampleAddMethod() {
- this->_signature = "ii";
+ this->_signature = "i:ii";
this->_help = "This method adds two integers together";
}
void