]> git.sur5r.net Git - openldap/commitdiff
Change "goto leave" to "goto exit" to avoid DEC namespace pollution
authorHoward Chu <hyc@openldap.org>
Sat, 22 Feb 2003 01:49:55 +0000 (01:49 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 22 Feb 2003 01:49:55 +0000 (01:49 +0000)
libraries/libldap/result.c

index 28f20e6b28543d1af15df07b1d03d9a30adcd408..3a089981884835075b8c998878398b74b8cab381 100644 (file)
@@ -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 );