Changed param source in strncpy

In strncpy its the destination size that should be in the 3rd parameter.
This commit is contained in:
Nemirtingas 2019-06-18 00:25:56 +02:00
parent 0543229b3e
commit b034ee8781
2 changed files with 23 additions and 3 deletions

View file

@ -176,10 +176,14 @@ message Auth_Ticket {
message Friend_Messages {
enum Types {
LOBBY_INVITE = 0;
GAME_INVITE = 1;
}
Types type = 1;
uint64 lobby_id = 2;
oneof invite_data {
uint64 lobby_id = 2;
bytes connect_str = 3;
}
}
message Common_Message {