From 3319655e2b5a2fcc680acc3e346cc7d782643990 Mon Sep 17 00:00:00 2001 From: TectonicEd Date: Tue, 25 Feb 2014 23:52:33 +0000 Subject: [PATCH] Clarifying error message This error will be triggered if either setting the group or the user is the problem. Fixing the wording after being led astray tracking down issue that was group, not user, related. --- src/NzbDrone.Mono/DiskProvider.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Mono/DiskProvider.cs b/src/NzbDrone.Mono/DiskProvider.cs index cfbaa98c4..877f5c129 100644 --- a/src/NzbDrone.Mono/DiskProvider.cs +++ b/src/NzbDrone.Mono/DiskProvider.cs @@ -99,7 +99,7 @@ namespace NzbDrone.Mono { var error = Stdlib.GetLastError(); - throw new LinuxPermissionsException("Error setting file owner: " + error); + throw new LinuxPermissionsException("Error setting file owner and/or group: " + error); } }