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; break;
default: default:
assert( 0 ); tag = LBER_SEQUENCE;
tag = LBER_ERROR;
} }
return tag; return tag;
} }