Correct internal name for query_status_for

This commit is contained in:
Marc Di Luzio 2019-02-09 16:13:11 +00:00
parent de1049f070
commit d4fdd9e3b4
4 changed files with 8 additions and 8 deletions

View File

@ -165,8 +165,8 @@ static int method_unregister_game_by_pid(sd_bus_message *m, void *userdata,
/** /**
* Handles the QueryStatus D-BUS Method * Handles the QueryStatus D-BUS Method
*/ */
static int method_query_status_for(sd_bus_message *m, void *userdata, static int method_query_status_by_pid(sd_bus_message *m, void *userdata,
__attribute__((unused)) sd_bus_error *ret_error) __attribute__((unused)) sd_bus_error *ret_error)
{ {
int callerpid = 0; int callerpid = 0;
int gamepid = 0; int gamepid = 0;
@ -178,7 +178,7 @@ static int method_query_status_for(sd_bus_message *m, void *userdata,
return ret; return ret;
} }
int status = game_mode_context_query_status_for(context, (pid_t)callerpid, (pid_t)gamepid); int status = game_mode_context_query_status_by_pid(context, (pid_t)callerpid, (pid_t)gamepid);
return sd_bus_reply_method_return(m, "i", status); return sd_bus_reply_method_return(m, "i", status);
} }
@ -195,7 +195,7 @@ static const sd_bus_vtable gamemode_vtable[] =
SD_BUS_VTABLE_UNPRIVILEGED), SD_BUS_VTABLE_UNPRIVILEGED),
SD_BUS_METHOD("UnregisterGameByPID", "ii", "i", method_unregister_game_by_pid, SD_BUS_METHOD("UnregisterGameByPID", "ii", "i", method_unregister_game_by_pid,
SD_BUS_VTABLE_UNPRIVILEGED), SD_BUS_VTABLE_UNPRIVILEGED),
SD_BUS_METHOD("QueryStatusFor", "ii", "i", method_query_status_for, SD_BUS_METHOD("QueryStatusByPID", "ii", "i", method_query_status_by_pid,
SD_BUS_VTABLE_UNPRIVILEGED), SD_BUS_VTABLE_UNPRIVILEGED),
SD_BUS_VTABLE_END }; SD_BUS_VTABLE_END };

View File

@ -571,7 +571,7 @@ error_cleanup:
/** /**
* Request status on behalf of caller * Request status on behalf of caller
*/ */
int game_mode_context_query_status_for(GameModeContext *self, pid_t callerpid, pid_t gamepid) int game_mode_context_query_status_by_pid(GameModeContext *self, pid_t callerpid, pid_t gamepid)
{ {
int status = 0; int status = 0;

View File

@ -120,7 +120,7 @@ int game_mode_context_unregister_by_pid(GameModeContext *self, pid_t callerpid,
* 2 if gamemode is active and the client is registered * 2 if gamemode is active and the client is registered
* -2 if this supervisor was rejected * -2 if this supervisor was rejected
*/ */
int game_mode_context_query_status_for(GameModeContext *self, pid_t callerpid, pid_t gamepid); int game_mode_context_query_status_by_pid(GameModeContext *self, pid_t callerpid, pid_t gamepid);
/** /**
* Query the config of a gamemode context * Query the config of a gamemode context

View File

@ -125,8 +125,8 @@ extern int real_gamemode_register_end_for(pid_t pid)
return gamemode_request("UnregisterGameByPID", pid); return gamemode_request("UnregisterGameByPID", pid);
} }
// Wrapper to call QueryStatusFor // Wrapper to call QueryStatusByPID
extern int real_gamemode_query_status_for(pid_t pid) extern int real_gamemode_query_status_for(pid_t pid)
{ {
return gamemode_request("QueryStatusFor", pid); return gamemode_request("QueryStatusByPID", pid);
} }