aboutsummaryrefslogtreecommitdiff
path: root/games/ultimatestunts/files
diff options
context:
space:
mode:
authorAndrew Pantyukhin <sat@FreeBSD.org>2007-10-19 17:03:02 +0000
committerAndrew Pantyukhin <sat@FreeBSD.org>2007-10-19 17:03:02 +0000
commitc42b0bee9dff11f06b348c2e8ad21299d0b39cd7 (patch)
treef739dcd15f8d75a2382da67206a4865cd2e0fc59 /games/ultimatestunts/files
parent4faaeee1a86f156257624b3410c70692cf4117f1 (diff)
downloadports-c42b0bee9dff11f06b348c2e8ad21299d0b39cd7.tar.gz
ports-c42b0bee9dff11f06b348c2e8ad21299d0b39cd7.zip
Notes
Diffstat (limited to 'games/ultimatestunts/files')
-rw-r--r--games/ultimatestunts/files/patch-simulation__metaserver.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/games/ultimatestunts/files/patch-simulation__metaserver.cpp b/games/ultimatestunts/files/patch-simulation__metaserver.cpp
deleted file mode 100644
index 3dcb85c92ab2..000000000000
--- a/games/ultimatestunts/files/patch-simulation__metaserver.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
---- ./simulation/metaserver.cpp.orig 2007-08-09 21:50:18.000000000 +0400
-+++ ./simulation/metaserver.cpp 2007-08-09 22:02:25.000000000 +0400
-@@ -186,13 +186,15 @@
-
- bool CMetaServer::httpPost(const CString &args, const CString &data)
- {
-+ char datalength[20];
-+ sprintf(datalength, "%ld", data.length());
- CString postdata =
- CString("POST ") + m_URI+args + " HTTP/1.1\r\n"
- "Host: " + m_Hostname + "\r\n"
- "Connection: close\r\n"
- "User-Agent: " + PACKAGE + "/" + VERSION + "\r\n"
- "Content-Type: application/x-www-form-urlencoded\r\n"
-- "Content-Length: " + data.length() + "\r\n"
-+ "Content-Length: " + datalength + "\r\n"
- "\r\n"
- + data + "\r\n";
-