Fixed some comments

This commit is contained in:
ddrinan%netscape.com 2000-05-09 18:24:35 +00:00
parent d3b5bfb405
commit 535e326854

View File

@ -161,7 +161,7 @@ prettyPrintStringStart(PRFileDesc *out, unsigned char *str,
int rv;
if (len >= BUF_SIZE) {
//len = BUF_SIZE - 1;
/* len = BUF_SIZE - 1; */
buf = dynamicBuf = SSM_NEW_ARRAY(char, len+1);
} else {
buf = staticBuf;
@ -650,7 +650,7 @@ prettyPrintItem(PRFileDesc *out, unsigned char *data, unsigned char *end,
return rv;
break;
case SEC_ASN1_OCTET_STRING:
//rv = prettyPrintOctetString(out,data,slen,lv+1);
/* rv = prettyPrintOctetString(out,data,slen,lv+1); */
rv = prettyPrintItem(out,data,data+slen,lv+1, raw);
if (rv < 0)
return rv;