Skip to content
This repository was archived by the owner on Jan 10, 2025. It is now read-only.

Commit c1ddbf3

Browse files
Craig JohnsonCraig Johnson
authored andcommitted
Corrected the alignment style to utilize tabs vs spaces.
1 parent 62aa239 commit c1ddbf3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Touch.Server/Main.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,13 @@ public bool Processing (TcpClient client, bool skipHeader = false)
108108

109109
using (FileStream fs = File.OpenWrite (logfile)) {
110110
if (!skipHeader) {
111-
// a few extra bits of data only available from this side
112-
string header = String.Format("[Local Date/Time:\t{1}]{0}[Remote Address:\t{2}]{0}",
113-
Environment.NewLine, DateTime.Now, remote);
114-
byte[] array = Encoding.UTF8.GetBytes(header);
115-
fs.Write (array, 0, array.Length);
116-
fs.Flush ();
117-
}
111+
// a few extra bits of data only available from this side
112+
string header = String.Format("[Local Date/Time:\t{1}]{0}[Remote Address:\t{2}]{0}",
113+
Environment.NewLine, DateTime.Now, remote);
114+
byte[] array = Encoding.UTF8.GetBytes(header);
115+
fs.Write (array, 0, array.Length);
116+
fs.Flush ();
117+
}
118118
// now simply copy what we receive
119119
int i;
120120
int total = 0;

0 commit comments

Comments
 (0)