Patch req2rst not to abort on unknown tags

This commit is contained in:
Kurt Zeilenga 2000-09-21 22:29:53 +00:00
parent 342ad23c4c
commit 2aebaba70e

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