You've already forked linux-packaging-mono
Imported Upstream version 3.12.0
Former-commit-id: cf92446697332992ec36726e78eb8703e1f259d7
This commit is contained in:
@@ -31,6 +31,7 @@
|
||||
//
|
||||
|
||||
using System;
|
||||
using System.Security;
|
||||
|
||||
namespace Mono.Data.Tds.Protocol
|
||||
{
|
||||
@@ -42,7 +43,8 @@ namespace Mono.Data.Tds.Protocol
|
||||
public string Hostname;
|
||||
public string Language;
|
||||
public string LibraryName;
|
||||
public string Password;
|
||||
public SecureString Password;
|
||||
public bool PasswordSet;
|
||||
public string ProgName;
|
||||
public string User;
|
||||
public bool DomainLogin;
|
||||
@@ -62,7 +64,8 @@ namespace Mono.Data.Tds.Protocol
|
||||
Hostname = System.Net.Dns.GetHostName();
|
||||
Language = String.Empty;
|
||||
LibraryName = "Mono";
|
||||
Password = String.Empty;
|
||||
Password = new SecureString();
|
||||
PasswordSet = false;
|
||||
ProgName = "Mono";
|
||||
User = String.Empty;
|
||||
DomainLogin = false;
|
||||
|
||||
Reference in New Issue
Block a user