diff options
author | Ricco Mandahl Jørgensen <riccojorgensen@gmail.com> | 2018-03-13 14:53:05 +0100 |
---|---|---|
committer | Ricco Mandahl Jørgensen <riccojorgensen@gmail.com> | 2018-03-13 14:53:05 +0100 |
commit | c684015a82de139e53b60a4805d18137b74c13ac (patch) | |
tree | d15c96eb6598658b315852a90ac83274b7c4623c /PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs | |
parent | 42756ffc428100db786e56553f4e2ea4b50ba785 (diff) |
WORKS..kindof
Diffstat (limited to 'PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs')
-rw-r--r-- | PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs b/PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs index ee086e1..dc36679 100644 --- a/PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs +++ b/PasswordCrackerDistributed/PasswordCrackerServer/clientConnection.cs @@ -31,7 +31,7 @@ namespace PasswordCrackerServer StreamWriter sw = new StreamWriter(ns);
sw.AutoFlush = true;
- sw.WriteLine($"DPCP 1.0\n{pass}\n{chunk}");
+ sw.WriteLine($"DPCP 1.0\n{pass}\n{chunk}\n\n");
//sw.WriteLine(pass);
//sw.WriteLine(chunk);
|