diff options
Diffstat (limited to 'databases/usogres/files/patch-protocol.cc')
-rw-r--r-- | databases/usogres/files/patch-protocol.cc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/usogres/files/patch-protocol.cc b/databases/usogres/files/patch-protocol.cc new file mode 100644 index 000000000000..a8d1c3f27b90 --- /dev/null +++ b/databases/usogres/files/patch-protocol.cc @@ -0,0 +1,11 @@ +--- src/protocol.cc.orig Wed Aug 20 19:10:01 2003 ++++ src/protocol.cc Wed Aug 20 19:10:03 2003 +@@ -330,7 +330,7 @@ + #ifdef WIN32 + std::string str(p + sizeof(int), len); + #else +- string str(p + sizeof(int), len); ++ std::string str(p + sizeof(int), len); + #endif + printf(" Value:%s\n", str.c_str()); + p += len + sizeof(int); |