Merge pull request #59 from TectonicEd/patch-2

Bug fix: get groupname of group rather than user
This commit is contained in:
Mark McDowall 2014-03-12 22:34:34 -07:00
commit 953024cd40
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ namespace NzbDrone.Mono
if (!uint.TryParse(group, out groupId)) if (!uint.TryParse(group, out groupId))
{ {
var g = Syscall.getgrnam(user); var g = Syscall.getgrnam(group);
if (g == null) if (g == null)
{ {