aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-01-21 16:30:07 -0500
committerMichael <[email protected]>2017-01-21 16:30:07 -0500
commite78caeaeff792fb2c68d361fb5eccd96a44907ac (patch)
tree64edc9112ad565f97ea1c98acddf5f0143deb7df /ShiftOS.WinForms
parenta531cefa00923cc89fe94750bb1b4af12a50df93 (diff)
downloadshiftos_thereturn-e78caeaeff792fb2c68d361fb5eccd96a44907ac.tar.gz
shiftos_thereturn-e78caeaeff792fb2c68d361fb5eccd96a44907ac.tar.bz2
shiftos_thereturn-e78caeaeff792fb2c68d361fb5eccd96a44907ac.zip
Fix error in trm handshake request
Diffstat (limited to 'ShiftOS.WinForms')
-rw-r--r--ShiftOS.WinForms/Commands.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.WinForms/Commands.cs b/ShiftOS.WinForms/Commands.cs
index ba0ed31..2f95fe2 100644
--- a/ShiftOS.WinForms/Commands.cs
+++ b/ShiftOS.WinForms/Commands.cs
@@ -50,10 +50,10 @@ namespace ShiftOS.WinForms
return true;
}
- [Command("remote", "username:,sysname:,pass:", "Allows you to control a remote system on the multi-user domain given a username, password and system name.")]
+ [Command("remote", "username:,sysname:,password:", "Allows you to control a remote system on the multi-user domain given a username, password and system name.")]
[RequiresArgument("username")]
[RequiresArgument("sysname")]
- [RequiresArgument("pass")]
+ [RequiresArgument("password")]
public static bool RemoteControl(Dictionary<string, object> args)
{
ServerManager.SendMessage("trm_handshake_request", JsonConvert.SerializeObject(args));