Renamed ShareCollection to SMBShareCollection

This commit is contained in:
Tal Aloni 2017-03-09 16:56:47 +02:00
parent a7af73ae2d
commit 82f308b576
6 changed files with 9 additions and 9 deletions

View file

@ -84,7 +84,7 @@ namespace SMBServer
authenticationMechanism = new IndependentNTLMAuthenticationProvider(users.GetUserPassword);
}
ShareCollection shares;
SMBShareCollection shares;
try
{
shares = ReadShareSettings();
@ -150,9 +150,9 @@ namespace SMBServer
return users;
}
private ShareCollection ReadShareSettings()
private SMBShareCollection ReadShareSettings()
{
ShareCollection shares = new ShareCollection();
SMBShareCollection shares = new SMBShareCollection();
XmlDocument document = GetSettingsXML();
XmlNode sharesNode = document.SelectSingleNode("Settings/Shares");