Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 933875
Collapse All | Expand All

(-)openldap-OPENLDAP_REL_ENG_2_6_6_orig/servers/slapd/config.c (-1 / +1 lines)
Lines 151-157 Link Here
151
	int rc, arg_user, arg_type, arg_syn, iarg;
151
	int rc, arg_user, arg_type, arg_syn, iarg;
152
	unsigned uiarg;
152
	unsigned uiarg;
153
	long larg;
153
	long larg;
154
	size_t ularg;
154
	unsigned long ularg;
155
	ber_len_t barg;
155
	ber_len_t barg;
156
	
156
	
157
	if(Conf->arg_type == ARG_IGNORED) {
157
	if(Conf->arg_type == ARG_IGNORED) {
(-)openldap-OPENLDAP_REL_ENG_2_6_6_orig/servers/slapd/overlays/constraint.c (-1 / +1 lines)
Lines 557-563 Link Here
557
				a2->restrict_filter = ap.restrict_filter;
557
				a2->restrict_filter = ap.restrict_filter;
558
				a2->restrict_val = ap.restrict_val;
558
				a2->restrict_val = ap.restrict_val;
559
559
560
				for ( app = &on->on_bi.bi_private; *app; app = &(*app)->ap_next )
560
				for ( app = (constraint **)&on->on_bi.bi_private; *app; app = &(*app)->ap_next )
561
					/* Get to the end */ ;
561
					/* Get to the end */ ;
562
562
563
				a2->ap_next = *app;
563
				a2->ap_next = *app;
(-)openldap-OPENLDAP_REL_ENG_2_6_6_orig/servers/slapd/overlays/dyngroup.c (-1 / +1 lines)
Lines 111-117 Link Here
111
		 */
111
		 */
112
		a2 = ch_malloc( sizeof(adpair) );
112
		a2 = ch_malloc( sizeof(adpair) );
113
113
114
		for ( app = &on->on_bi.bi_private; *app; app = &(*app)->ap_next )
114
		for ( app = (adpair **)&on->on_bi.bi_private; *app; app = &(*app)->ap_next )
115
			/* Get to the end */ ;
115
			/* Get to the end */ ;
116
116
117
		a2->ap_mem = ap.ap_mem;
117
		a2->ap_mem = ap.ap_mem;
(-)openldap-OPENLDAP_REL_ENG_2_6_6_orig/servers/slapd/overlays/valsort.c (-1 / +1 lines)
Lines 201-207 Link Here
201
		return(1);
201
		return(1);
202
	}
202
	}
203
203
204
	for ( vip = &on->on_bi.bi_private; *vip; vip = &(*vip)->vi_next )
204
	for ( vip = (valsort_info **)&on->on_bi.bi_private; *vip; vip = &(*vip)->vi_next )
205
		/* Get to the end */ ;
205
		/* Get to the end */ ;
206
206
207
	vi = ch_malloc( sizeof(valsort_info) );
207
	vi = ch_malloc( sizeof(valsort_info) );

Return to bug 933875