egs_login: Remove a warning on unused Socket variable.

This commit is contained in:
Loïc Hoguin 2011-02-27 02:14:57 +01:00
parent 34b4a21ce7
commit dd4a228b01

View File

@ -65,7 +65,7 @@ event(system_game_server_request, Client=#client{socket=Socket}) ->
%% @doc Authenticate the user by pattern matching its saved state against the key received.
%% If the user is authenticated, send him the character flags list.
%% @todo Remove the put calls when all the send_xxxx are moved out of psu_game and into psu_proto.
event({system_key_auth_request, AuthGID, AuthKey}, Client=#client{socket=Socket}) ->
event({system_key_auth_request, AuthGID, AuthKey}, Client) ->
egs_accounts:key_auth(AuthGID, AuthKey),
put(gid, AuthGID),
Client2 = Client#client{gid=AuthGID},