quel 64bit warnings, fixup implicit encoding for template, fix spelling

This commit is contained in:
Love Hornquist Astrand
2013-06-03 21:45:51 -07:00
parent b301e47fb8
commit 060474df16
44 changed files with 977 additions and 515 deletions

View File

@@ -174,13 +174,14 @@ loop (unsigned char *buf, size_t len, int indent)
printf ("(length %lu), ", (unsigned long)length);
if (inner_flag) {
Der_class c;
Der_type ty;
unsigned int ta;
Der_class class2;
Der_type type2;
unsigned int tag2;
ret = der_get_tag(str.data, str.length, &c, &ty, &ta, &sz);
ret = der_get_tag(str.data, str.length,
&class2, &type2, &tag2, &sz);
if (ret || sz > str.length ||
type != CONS || tag != UT_Sequence)
type2 != CONS || tag2 != UT_Sequence)
goto just_an_octet_string;
printf("{\n");