hent = NULL;
}
for (;;) {
- snprintf(b->data, b->max, "%s/%08lx.%s%d",
+ (void) snprintf(b->data, b->max, "%s/%08lx.%s%d",
ent->dir, h, postfix, k);
#ifndef OPENSSL_NO_POSIX_IO
return("CRL path validation error");
default:
- snprintf(buf, sizeof buf, "error number %ld", n);
- return (buf);
+ (void) snprintf(buf, sizeof buf, "error number %ld", n);
+ return(buf);
}
}
case GEN_IPADD:
p = gen->d.ip->data;
if(gen->d.ip->length == 4)
- snprintf(oline, sizeof oline,
+ (void) snprintf(oline, sizeof oline,
"%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
else if(gen->d.ip->length == 16)
{
oline[0] = 0;
for (i = 0; i < 8; i++)
{
- snprintf(htmp, sizeof htmp,
+ (void) snprintf(htmp, sizeof htmp,
"%X", p[0] << 8 | p[1]);
p += 2;
strlcat(oline, htmp, sizeof(oline));
hent = NULL;
}
for (;;) {
- snprintf(b->data, b->max, "%s/%08lx.%s%d",
+ (void) snprintf(b->data, b->max, "%s/%08lx.%s%d",
ent->dir, h, postfix, k);
#ifndef OPENSSL_NO_POSIX_IO
return("CRL path validation error");
default:
- snprintf(buf, sizeof buf, "error number %ld", n);
- return (buf);
+ (void) snprintf(buf, sizeof buf, "error number %ld", n);
+ return(buf);
}
}
case GEN_IPADD:
p = gen->d.ip->data;
if(gen->d.ip->length == 4)
- snprintf(oline, sizeof oline,
+ (void) snprintf(oline, sizeof oline,
"%d.%d.%d.%d", p[0], p[1], p[2], p[3]);
else if(gen->d.ip->length == 16)
{
oline[0] = 0;
for (i = 0; i < 8; i++)
{
- snprintf(htmp, sizeof htmp,
+ (void) snprintf(htmp, sizeof htmp,
"%X", p[0] << 8 | p[1]);
p += 2;
strlcat(oline, htmp, sizeof(oline));