summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-server/monopd/files/monopd-0.9.3-dosfix.patch')
-rw-r--r--games-server/monopd/files/monopd-0.9.3-dosfix.patch36
1 files changed, 0 insertions, 36 deletions
diff --git a/games-server/monopd/files/monopd-0.9.3-dosfix.patch b/games-server/monopd/files/monopd-0.9.3-dosfix.patch
deleted file mode 100644
index 6b5c9e67a500..000000000000
--- a/games-server/monopd/files/monopd-0.9.3-dosfix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
---- monopd-0.9.3/src/server.cpp Sat Jul 17 14:45:47 2004
-+++ server.cpp Fri Mar 17 14:19:06 2006
-@@ -791,7 +791,7 @@
- switch(data[1])
- {
- case 'n':
-- pNew = newPlayer(socket, data.substr(2));
-+ pNew = newPlayer(socket, data.substr(2, 16));
- sendXMLUpdates();
- sendXMLUpdate(pNew, true, true); // give new player a full update (excluding self) so it knows who's in the lounge
- return;
-@@ -832,13 +832,13 @@
- switch(data[0])
- {
- case 'n':
-- setPlayerName(pInput, std::string(data+1));
-+ setPlayerName(pInput, data2.substr(1, 16));
- return;
- case 'p':
- switch(data[1])
- {
- case 'i':
-- pInput->setProperty("image", data+2, this);
-+ pInput->setProperty("image", data2.substr(2, 32), this);
- return;
- }
- break;
-@@ -1132,7 +1132,7 @@
- switch(data[1])
- {
- case 'd':
-- setGameDescription(pInput, data2.substr(2));
-+ setGameDescription(pInput, data2.substr(2, 64));
- return;
- case 'c':
- game->editConfiguration( pInput, data+2 );