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, ...@@ -39,11 +39,11 @@ INTEGER_encode_der(const asn_TYPE_descriptor_t *td, const void *sptr,
* b) shall not all be zero. * b) shall not all be zero.
*/ */
switch(*buf) { switch(*buf) {
case 0x00: if((buf[1] & 0x80) == 0) case 0x00:
continue; if((buf[1] & 0x80) == 0) continue;
break; break;
case 0xff: if((buf[1] & 0x80)) case 0xff:
continue; if((buf[1] & 0x80)) continue;
break; break;
} }
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