From e78caeaeff792fb2c68d361fb5eccd96a44907ac Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 21 Jan 2017 16:30:07 -0500 Subject: [PATCH] Fix error in trm handshake request --- ShiftOS.WinForms/Commands.cs | 4 ++-- 1 file 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 args) { ServerManager.SendMessage("trm_handshake_request", JsonConvert.SerializeObject(args));