Skip to content
This repository has been archived by the owner on Sep 13, 2018. It is now read-only.

Commit

Permalink
escape characters fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mchome committed Nov 11, 2015
1 parent ad6219b commit b2fc4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void CreateConnect(string ConnectName)
void Btn_DialupClick(object sender, EventArgs e)
{
try {
string username = Username.Text.ToString();
string username = Username.Text.Replace("\\r","\r").Replace("\\n","\n");
string password = Password.Text.ToString();
RasDialer dialer = new RasDialer();
dialer.EntryName = "PPPoEDial";
Expand Down

0 comments on commit b2fc4b8

Please sign in to comment.