]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
req2res: Don't abort on unknown tags
authorKurt Zeilenga <kurt@openldap.org>
Thu, 21 Sep 2000 22:31:40 +0000 (22:31 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 21 Sep 2000 22:31:40 +0000 (22:31 +0000)
servers/slapd/result.c

index b22b235ec18f0cb5f7768bcec8816aab6ec7db73..c3b32e839fc580523af7a442c6045f7a3d55d1ec 100644 (file)
@@ -85,9 +85,9 @@ static ber_tag_t req2res( ber_tag_t tag )
                break;
 
        default:
-               assert( 0 );
-               tag = LBER_ERROR;
+               tag = LBER_SEQUENCE;
        }
+
        return tag;
 }