Skip to content

Commit 4d41375

Browse files
committed
Fix wrong view name
1 parent 91047ef commit 4d41375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/codehaus/plexus/components/io/attributes/FileAttributes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public FileAttributes(@Nonnull Path path, boolean followLinks) throws IOExceptio
141141
}
142142
this.userName = name;
143143
} else if (views.contains("owner")) {
144-
this.userName = getPrincipalName(path, "unix:owner");
144+
this.userName = getPrincipalName(path, "owner:owner");
145145
} else {
146146
this.userName = null;
147147
}

0 commit comments

Comments
 (0)