diff options
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/isolate.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/isolate.go b/utils/isolate.go index b797a999..b05f4b3a 100755 --- a/utils/isolate.go +++ b/utils/isolate.go @@ -20,7 +20,7 @@ func IsolateProcess(cmd *exec.Cmd) { // ExecuteFromUser may work only if run RR under root user func ExecuteFromUser(cmd *exec.Cmd, u string) error { - const op = errors.Op("execute from user") + const op = errors.Op("execute_from_user") usr, err := user.Lookup(u) if err != nil { return errors.E(op, err) |