req2res: Don't abort on unknown tags

This commit is contained in:
Kurt Zeilenga 2000-09-21 22:31:40 +00:00
parent 5b9301ff5c
commit a47cb15db5

View 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;
}