Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 192941 Details for
Bug 283041
MMR: Directory updates on same object
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
diffs
cvsdiffs (text/plain), 2.05 KB, created by
Rich Megginson
on 2007-09-11 20:05:04 UTC
(
hide
)
Description:
diffs
Filename:
MIME Type:
Creator:
Rich Megginson
Created:
2007-09-11 20:05:04 UTC
Size:
2.05 KB
patch
obsolete
>Index: ldapserver/ldap/servers/plugins/replication/repl5_plugins.c >=================================================================== >RCS file: /cvs/dirsec/ldapserver/ldap/servers/plugins/replication/repl5_plugins.c,v >retrieving revision 1.7 >diff -u -8 -r1.7 repl5_plugins.c >--- ldapserver/ldap/servers/plugins/replication/repl5_plugins.c 10 Nov 2006 23:45:17 -0000 1.7 >+++ ldapserver/ldap/servers/plugins/replication/repl5_plugins.c 11 Sep 2007 19:22:15 -0000 >@@ -784,22 +784,36 @@ > purge_entry_state_information(pb); > > return rc; > } > > int > multimaster_bepostop_modrdn (Slapi_PBlock *pb) > { >+ Slapi_Operation *op; >+ >+ slapi_pblock_get(pb, SLAPI_OPERATION, &op); >+ if ( ! operation_is_flag_set (op, OP_FLAG_REPL_FIXUP) ) >+ { >+ urp_post_modrdn_operation (pb); >+ } > return 0; > } > > int > multimaster_bepostop_delete (Slapi_PBlock *pb) > { >+ Slapi_Operation *op; >+ >+ slapi_pblock_get(pb, SLAPI_OPERATION, &op); >+ if ( ! operation_is_flag_set (op, OP_FLAG_REPL_FIXUP) ) >+ { >+ urp_post_delete_operation (pb); >+ } > return 0; > } > > /* postop - write to changelog */ > int > multimaster_postop_bind (Slapi_PBlock *pb) > { > return 0; >@@ -809,47 +823,29 @@ > multimaster_postop_add (Slapi_PBlock *pb) > { > return process_postop(pb); > } > > int > multimaster_postop_delete (Slapi_PBlock *pb) > { >- int rc; >- Slapi_Operation *op; >- >- slapi_pblock_get(pb, SLAPI_OPERATION, &op); >- if ( ! operation_is_flag_set (op, OP_FLAG_REPL_FIXUP) ) >- { >- urp_post_delete_operation (pb); >- } >- rc = process_postop(pb); >- return rc; >+ return process_postop(pb); > } > > int > multimaster_postop_modify (Slapi_PBlock *pb) > { > return process_postop(pb); > } > > int > multimaster_postop_modrdn (Slapi_PBlock *pb) > { >- int rc; >- Slapi_Operation *op; >- >- slapi_pblock_get(pb, SLAPI_OPERATION, &op); >- if ( ! operation_is_flag_set (op, OP_FLAG_REPL_FIXUP) ) >- { >- urp_post_modrdn_operation (pb); >- } >- rc = process_postop(pb); >- return rc; >+ return process_postop(pb); > } > > > /* Helper functions */ > > /* > * This function makes a copy of the operation parameters > * and stashes them in the consumer operation extension.
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 283041
:
192921
| 192941 |
193151