[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-3030-gfaa732c

Jeremy Allison jra at samba.org
Tue Sep 16 01:26:11 GMT 2008


The branch, v3-2-test has been updated
       via  faa732c245c9296ff4cd4a56f353c3d5d1b0d202 (commit)
      from  c2a05d4ed34aa8185a7d236e8d7b1493d67a3068 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit faa732c245c9296ff4cd4a56f353c3d5d1b0d202
Author: Timur <timur at FreeBSD.org>
Date:   Mon Sep 15 18:24:58 2008 -0700

    Fix display of POSIX ACLs.

-----------------------------------------------------------------------

Summary of changes:
 source/client/client.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/client/client.c b/source/client/client.c
index 9446c27..d794f8f 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::");


-- 
Samba Shared Repository


More information about the samba-cvs mailing list