diff options
| author | Michael <[email protected]> | 2017-01-21 19:35:03 -0500 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-01-21 19:35:03 -0500 |
| commit | 19b7f5b98330335f51efd52b0f744e6174e987fe (patch) | |
| tree | d32ec503784fdad8f74f6396ed987b2b1de7a7e4 /ShiftOS.Server/Program.cs | |
| parent | 84be879805ab7ad4a6934275ef3d3a0250b70cfc (diff) | |
| download | shiftos_thereturn-19b7f5b98330335f51efd52b0f744e6174e987fe.tar.gz shiftos_thereturn-19b7f5b98330335f51efd52b0f744e6174e987fe.tar.bz2 shiftos_thereturn-19b7f5b98330335f51efd52b0f744e6174e987fe.zip | |
Change cmdstr to command in trm_invcmd
Diffstat (limited to 'ShiftOS.Server/Program.cs')
| -rw-r--r-- | ShiftOS.Server/Program.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Server/Program.cs b/ShiftOS.Server/Program.cs index 6c6d1da..3e0455a 100644 --- a/ShiftOS.Server/Program.cs +++ b/ShiftOS.Server/Program.cs @@ -326,9 +326,9 @@ Contents: } break; case "trm_invcmd": - if(args["guid"] != null && args["cmdstr"] != null) + if(args["guid"] != null && args["command"] != null) { - string cmd = args["cmdstr"] as string; + string cmd = args["command"] as string; string cGuid = args["guid"] as string; server.DispatchTo(new Guid(cGuid), new NetObject("trminvoke", new ServerMessage { |
