summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--pkg/sentry/loader/loader.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/sentry/loader/loader.go b/pkg/sentry/loader/loader.go
index 4ed796493..a68ab33e7 100644
--- a/pkg/sentry/loader/loader.go
+++ b/pkg/sentry/loader/loader.go
@@ -85,7 +85,7 @@ func openPath(ctx context.Context, mm *fs.MountNamespace, root, wd *fs.Dirent, m
// No exec-ing directories, pipes, etc!
if !fs.IsRegular(d.Inode.StableAttr) {
- ctx.Infof("Error regularing %s: %v", name, d.Inode.StableAttr)
+ ctx.Infof("%s is not regular: %v", name, d.Inode.StableAttr)
return nil, nil, syserror.EACCES
}