Differences From
Artifact [589998a327]:
140 140 }
141 141
142 142 static int asn1_x509_read_object(unsigned char *buf, size_t buflen, struct x509_object *outbuf) {
143 143 int read_ret;
144 144
145 145 read_ret = asn1_x509_read_asn1_object(buf, buflen, &outbuf->wholething, NULL);
146 146 if (read_ret != 0) {
147 - CACKEY_DEBUG_PRINTF("Failed at reading the contents from the wrapper")
147 + CACKEY_DEBUG_PRINTF("Failed at reading the contents from the wrapper");
148 148
149 149 return(-1);
150 150 }
151 151
152 152 read_ret = asn1_x509_read_asn1_object(outbuf->wholething.contents, outbuf->wholething.size, &outbuf->certificate, NULL);
153 153 if (read_ret != 0) {
154 154 CACKEY_DEBUG_PRINTF("Failed at reading the certificate from the contents");