From: <svn...@op...> - 2010-01-25 19:56:19
|
Author: scriptor Date: Mon Jan 25 20:56:09 2010 New Revision: 6023 URL: http://www.opensync.org/changeset/6023 Log: Forgot one argument in osync_trace command. Modified: plugins/ldap-sync/src/ldap_connect.c Modified: plugins/ldap-sync/src/ldap_connect.c ============================================================================== --- plugins/ldap-sync/src/ldap_connect.c Mon Jan 25 20:56:01 2010 (r6022) +++ plugins/ldap-sync/src/ldap_connect.c Mon Jan 25 20:56:09 2010 (r6023) @@ -4646,7 +4646,7 @@ osync_bool found_attribute = FALSE; - osync_trace(TRACE_ENTRY, "%s(%p, %p, %p)", __func__, (void *)entry, (void *)ldap_attribute, (void *)error); + osync_trace(TRACE_ENTRY, "%s(%p, %p, %p, %p)", __func__, (void *)entry, (void *)ldap_attribute, (void *)value, (void *)error); if (entry == NULL) { @@ -4693,8 +4693,8 @@ // Supplement it, if necessary if (!found_attribute) { - GList *new_set_of_mods = NULL; #ifndef CALL_ABORT + GList *new_set_of_mods = NULL; int j = 0; #endif |