summaryrefslogtreecommitdiffhomepage
path: root/Stars45/NetLobbyServer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/NetLobbyServer.cpp')
-rw-r--r--Stars45/NetLobbyServer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Stars45/NetLobbyServer.cpp b/Stars45/NetLobbyServer.cpp
index c3817c8..a0014e4 100644
--- a/Stars45/NetLobbyServer.cpp
+++ b/Stars45/NetLobbyServer.cpp
@@ -202,7 +202,7 @@ NetLobbyServer::LoadMOTD()
motd.destroy();
FILE* f;
- fopen_s(&f, "motd.txt", "r");
+ fopen_s(&f, "motd.txt", "rb");
if (f) {
char line[256];
@@ -595,7 +595,7 @@ void
NetLobbyServer::SaveChat()
{
FILE* f;
- fopen_s(&f, "chat.txt", "w");
+ fopen_s(&f, "chat.txt", "wb");
if (f) {
for (int i = 0; i < chat_log.size(); i++) {
NetChatEntry* c = chat_log[i];
@@ -1311,7 +1311,7 @@ NetLobbyServer::DoMissionData(NetPeer* peer, Text msg)
Text reply = Serialize(mission, user);
SendData(user, NET_LOBBY_MISSION_DATA, reply);
- FILE* f = ::fopen("multi_mission_send.def", "w");
+ FILE* f = ::fopen("multi_mission_send.def", "wb");
if (f) {
::fwrite(reply.data(), reply.length(), 1, f);
::fclose(f);