]> git.sur5r.net Git - openldap/commitdiff
Patch req2rst not to abort on unknown tags
authorKurt Zeilenga <kurt@openldap.org>
Thu, 21 Sep 2000 22:29:53 +0000 (22:29 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 21 Sep 2000 22:29:53 +0000 (22:29 +0000)
servers/slapd/result.c

index b32a2f3d1bd80b20b30a43bb62412a93e2a1664b..681dabad3147f84885f4ac219b460dfad784489b 100644 (file)
@@ -87,9 +87,9 @@ static ber_tag_t req2res( ber_tag_t tag )
                break;
 
        default:
-               assert( 0 );
-               tag = LBER_ERROR;
+               tag = LBER_SEQUENCE;
        }
+
        return tag;
 }