diff options
author | Michael Gernoth <debian@zerfleddert.de> | 2009-11-24 11:12:13 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2011-05-25 15:29:59 +0200 |
commit | d9dfacbaa0007d3dd0cff7134a9ca93e76f45759 (patch) | |
tree | 2f777e6a3f2aa7794484b7f050588e92ec0ef2b4 | |
parent | 2717ad615f548447052fd30cbee11769960c4e18 (diff) | |
download | amtterm-d9dfacbaa0007d3dd0cff7134a9ca93e76f45759.tar.gz |
Fix SOAP parameter order for OEM special commands
This patch sends the argument SpecialCommand before the argument
OEMparameters as mandated by RemoteControlInterface.wsdl from the
intel AMT SDK.
Tested on following models:
Fujitsu Siemens Esprimo P7935
Fujitsu Siemens Esprimo P5925
Signed-off-by: Reinhard Tartler <siretart@tauware.de>
-rwxr-xr-x | amttool | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -307,9 +307,9 @@ sub remote_control($$) { => $rccs{$special} )); } if (defined($special) && defined($rccs_oem{$special})) { - push (@args, SOAP::Data->name('OEMparameters' => 1 )); push (@args, SOAP::Data->name('SpecialCommand' => $rccs_oem{$special} )); + push (@args, SOAP::Data->name('OEMparameters' => 1 )); } do_soap($rcs, "RemoteControl", @args); } else { |