Author: metze Date: 2006-08-05 06:48:19 +0000 (Sat, 05 Aug 2006) New Revision: 17416
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=17416 Log: display the attributeSecurityGUID nicely. this attriute is used to group multiple attribute to a propertySet for access control. metze Modified: branches/SAMBA_4_0/source/lib/ldb/samba/ldif_handlers.c Changeset: Modified: branches/SAMBA_4_0/source/lib/ldb/samba/ldif_handlers.c =================================================================== --- branches/SAMBA_4_0/source/lib/ldb/samba/ldif_handlers.c 2006-08-05 06:35:32 UTC (rev 17415) +++ branches/SAMBA_4_0/source/lib/ldb/samba/ldif_handlers.c 2006-08-05 06:48:19 UTC (rev 17416) @@ -406,6 +406,14 @@ .comparison_fn = ldb_comparison_objectGUID }, { + .attr = "attributeSecurityGUID", + .flags = 0, + .ldif_read_fn = ldif_read_objectGUID, + .ldif_write_fn = ldif_write_objectGUID, + .canonicalise_fn = ldb_canonicalise_objectGUID, + .comparison_fn = ldb_comparison_objectGUID + }, + { .attr = "objectCategory", .flags = 0, .ldif_read_fn = ldb_handler_copy,
