From 747265419dc2c9e2602760f921a14691727f63b6 Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sat, 22 Feb 2003 01:49:55 +0000 Subject: [PATCH] Change "goto leave" to "goto exit" to avoid DEC namespace pollution --- libraries/libldap/result.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/libldap/result.c b/libraries/libldap/result.c index 28f20e6b28..3a08998188 100644 --- a/libraries/libldap/result.c +++ b/libraries/libldap/result.c @@ -853,12 +853,12 @@ lr->lr_res_matched ? lr->lr_res_matched : "" ); if ( l == NULL ) { if ( foundit ) { *result = new; - goto leave; + goto exit; } new->lm_next = ld->ld_responses; ld->ld_responses = new; - goto leave; + goto exit; } #ifdef NEW_LOGGING @@ -888,7 +888,7 @@ lr->lr_res_matched ? lr->lr_res_matched : "" ); *result = l; } -leave: +exit: if ( foundit ) { ld->ld_errno = LDAP_SUCCESS; return( tag ); -- 2.39.5