summaryrefslogtreecommitdiffstats
path: root/source/client
diff options
context:
space:
mode:
authorTimur <timur@FreeBSD.org>2008-09-15 18:26:24 -0700
committerKarolin Seeger <kseeger@samba.org>2008-09-16 11:47:55 +0200
commitc98030c620581820d669c5da7c250185f0518b76 (patch)
tree7f8149b51e9431fef6177e44eb0fbb6276173054 /source/client
parent46a9089e723590e4081d5e443f8d730c4bcdd64e (diff)
downloadsamba-c98030c620581820d669c5da7c250185f0518b76.tar.gz
samba-c98030c620581820d669c5da7c250185f0518b76.tar.xz
samba-c98030c620581820d669c5da7c250185f0518b76.zip
Fix display of POSIX ACLs.
(cherry picked from commit cfcf1d697f4a88ec6e46d3736476639712bb0e90)
Diffstat (limited to 'source/client')
-rw-r--r--source/client/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/client/client.c b/source/client/client.c
index bcd3324e095..f5207e4dfed 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -3036,7 +3036,7 @@ static int cmd_getfacl(void)
break;
case SMB_POSIX_ACL_GROUP:
uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+(i*SMB_POSIX_ACL_ENTRY_SIZE)+2);
- d_printf("group:%u", uorg);
+ d_printf("group:%u:", uorg);
break;
case SMB_POSIX_ACL_MASK:
d_printf("mask::");
@@ -3073,7 +3073,7 @@ static int cmd_getfacl(void)
break;
case SMB_POSIX_ACL_GROUP:
uorg = IVAL(retbuf,SMB_POSIX_ACL_HEADER_SIZE+((i+num_file_acls)*SMB_POSIX_ACL_ENTRY_SIZE)+2);
- d_printf("default:group:%u", uorg);
+ d_printf("default:group:%u:", uorg);
break;
case SMB_POSIX_ACL_MASK:
d_printf("default:mask::");