Skip to content

Commit

Permalink
CA-249052: [SCTX-2514] xe.exe unable to upload patches with XS 7.1.
Browse files Browse the repository at this point in the history
Renamed a variable

Signed-off-by: Mihaela Stoica <[email protected]>
  • Loading branch information
MihaelaStoica committed Mar 31, 2017
1 parent e123d83 commit f11fa1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CommandLib/thinCLIProtocol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ public static int getResultCode(string line){
public static Stream doRPC(String method, Uri uri, thinCLIProtocol tCLIprotocol, params string[] headers)
{
Stream http = Transport.connect(tCLIprotocol, uri.Host, uri.Port);
String header = string.Format("{0} {1} HTTP/1.0", method, uri.PathAndQuery);
writeLine(http, header);
String startLine = string.Format("{0} {1} HTTP/1.0", method, uri.PathAndQuery);
writeLine(http, startLine);
foreach (string h in headers)
writeLine(http, h);
writeLine(http, "");
Expand Down

0 comments on commit f11fa1c

Please sign in to comment.