Skip to content

Commit 99a93c6

Browse files
committed
[bugfix] Collection perms should be prefixed 'c' in the Java Admin Client shell
1 parent 91ce84d commit 99a93c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/exist/client/InteractiveClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ protected void getResources() throws XMLDBException {
379379
final Date created = mgtService.getSubCollectionCreationTime(current, childCollections[i]);
380380

381381
if ("true".equals(properties.getProperty(PERMISSIONS))) {
382-
resources[i] = '-' + perm.toString() + '\t' + getOwnerName(perm)
382+
resources[i] = 'c' + perm.toString() + '\t' + getOwnerName(perm)
383383
+ '\t' + getGroupName(perm) + '\t'
384384
+ created.toString() + '\t'
385385
+ childCollections[i];

0 commit comments

Comments
 (0)