diff options
author | millert <> | 2003-08-06 21:08:06 +0000 |
---|---|---|
committer | millert <> | 2003-08-06 21:08:06 +0000 |
commit | a020ac4fb1142d0bfea481464fcb724c23cf8e87 (patch) | |
tree | a8aa385ffec669550db50f43b95c3c90ed5e09b1 /src/lib/libcrypto/asn1 | |
parent | 846bdf59cc19d7049d903acfc3dd5cd50a11b84b (diff) | |
download | openbsd-a020ac4fb1142d0bfea481464fcb724c23cf8e87.tar.gz openbsd-a020ac4fb1142d0bfea481464fcb724c23cf8e87.tar.bz2 openbsd-a020ac4fb1142d0bfea481464fcb724c23cf8e87.zip |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'src/lib/libcrypto/asn1')
-rw-r--r-- | src/lib/libcrypto/asn1/a_bytes.c | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/asn1/t_x509.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/a_bytes.c b/src/lib/libcrypto/asn1/a_bytes.c index afd27b80e1..2407f7c87a 100644 --- a/src/lib/libcrypto/asn1/a_bytes.c +++ b/src/lib/libcrypto/asn1/a_bytes.c | |||
@@ -78,7 +78,7 @@ ASN1_STRING *d2i_ASN1_type_bytes(ASN1_STRING **a, unsigned char **pp, | |||
78 | 78 | ||
79 | if (tag >= 32) | 79 | if (tag >= 32) |
80 | { | 80 | { |
81 | i=ASN1_R_TAG_VALUE_TOO_HIGH;; | 81 | i=ASN1_R_TAG_VALUE_TOO_HIGH; |
82 | goto err; | 82 | goto err; |
83 | } | 83 | } |
84 | if (!(ASN1_tag2bit(tag) & type)) | 84 | if (!(ASN1_tag2bit(tag) & type)) |
diff --git a/src/lib/libcrypto/asn1/t_x509.c b/src/lib/libcrypto/asn1/t_x509.c index d1034c47f8..30f68561b7 100644 --- a/src/lib/libcrypto/asn1/t_x509.c +++ b/src/lib/libcrypto/asn1/t_x509.c | |||
@@ -321,7 +321,7 @@ int X509_signature_print(BIO *bp, X509_ALGOR *sigalg, ASN1_STRING *sig) | |||
321 | int ASN1_STRING_print(BIO *bp, ASN1_STRING *v) | 321 | int ASN1_STRING_print(BIO *bp, ASN1_STRING *v) |
322 | { | 322 | { |
323 | int i,n; | 323 | int i,n; |
324 | char buf[80],*p;; | 324 | char buf[80],*p; |
325 | 325 | ||
326 | if (v == NULL) return(0); | 326 | if (v == NULL) return(0); |
327 | n=0; | 327 | n=0; |