diff options
Diffstat (limited to 'src/lib/libssl/bytestring.h')
-rw-r--r-- | src/lib/libssl/bytestring.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/libssl/bytestring.h b/src/lib/libssl/bytestring.h index 209bb38e24..93c3df6f10 100644 --- a/src/lib/libssl/bytestring.h +++ b/src/lib/libssl/bytestring.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bytestring.h,v 1.3 2015/02/07 02:02:28 doug Exp $ */ | 1 | /* $OpenBSD: bytestring.h,v 1.4 2015/02/07 06:10:32 doug Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014, Google Inc. | 3 | * Copyright (c) 2014, Google Inc. |
4 | * | 4 | * |
@@ -374,7 +374,9 @@ int CBB_add_u24_length_prefixed(CBB *cbb, CBB *out_contents); | |||
374 | /* | 374 | /* |
375 | * CBB_add_asn sets |*out_contents| to a |CBB| into which the contents of an | 375 | * CBB_add_asn sets |*out_contents| to a |CBB| into which the contents of an |
376 | * ASN.1 object can be written. The |tag| argument will be used as the tag for | 376 | * ASN.1 object can be written. The |tag| argument will be used as the tag for |
377 | * the object. It returns one on success or zero on error. | 377 | * the object. Passing in |tag| number 31 will return in an error since only |
378 | * single octet identifiers are supported. It returns one on success or zero | ||
379 | * on error. | ||
378 | */ | 380 | */ |
379 | int CBB_add_asn1(CBB *cbb, CBB *out_contents, uint8_t tag); | 381 | int CBB_add_asn1(CBB *cbb, CBB *out_contents, uint8_t tag); |
380 | 382 | ||