mirror of
https://gitlab.com/Mr_Goldberg/goldberg_emulator.git
synced 2025-12-05 11:44:53 +01:00
Changed param source in strncpy
In strncpy its the destination size that should be in the 3rd parameter.
This commit is contained in:
parent
0543229b3e
commit
b034ee8781
2 changed files with 23 additions and 3 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue