aboutsummaryrefslogtreecommitdiff
path: root/src/server/authserver/Server/AuthSocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/authserver/Server/AuthSocket.cpp')
-rwxr-xr-xsrc/server/authserver/Server/AuthSocket.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/server/authserver/Server/AuthSocket.cpp b/src/server/authserver/Server/AuthSocket.cpp
index 8ec1fcd1fd3..bffe406ddfc 100755
--- a/src/server/authserver/Server/AuthSocket.cpp
+++ b/src/server/authserver/Server/AuthSocket.cpp
@@ -147,11 +147,11 @@ typedef struct AuthHandler
class PatcherRunnable: public ACE_Based::Runnable
{
public:
- PatcherRunnable(class AuthSocket *);
+ PatcherRunnable(class AuthSocket* );
void run();
private:
- AuthSocket * mySocket;
+ AuthSocket* mySocket;
};
typedef struct PATCH_INFO
@@ -948,7 +948,7 @@ bool AuthSocket::_HandleXferAccept()
return true;
}
-PatcherRunnable::PatcherRunnable(class AuthSocket * as)
+PatcherRunnable::PatcherRunnable(class AuthSocket* as)
{
mySocket = as;
}
@@ -1016,7 +1016,7 @@ void Patcher::LoadPatchMD5(char *szFileName)
// Try to open the patch file
std::string path = "./patches/";
path += szFileName;
- FILE *pPatch = fopen(path.c_str(), "rb");
+ FILE* pPatch = fopen(path.c_str(), "rb");
sLog->outDebug(LOG_FILTER_NETWORKIO, "Loading patch info from %s\n", path.c_str());
if (!pPatch)