Commit d6e6223b authored by Mouse's avatar Mouse

Address compiler warnings

parent ebed802c
......@@ -39,11 +39,11 @@ INTEGER_encode_der(const asn_TYPE_descriptor_t *td, const void *sptr,
* b) shall not all be zero.
*/
switch(*buf) {
case 0x00: if((buf[1] & 0x80) == 0)
continue;
case 0x00:
if((buf[1] & 0x80) == 0) continue;
break;
case 0xff: if((buf[1] & 0x80))
continue;
case 0xff:
if((buf[1] & 0x80)) continue;
break;
}
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment