diff options
author | Nils Larsch <nils@openssl.org> | 2007-02-10 10:45:07 +0100 |
---|---|---|
committer | Nils Larsch <nils@openssl.org> | 2007-02-10 10:45:07 +0100 |
commit | 92ada7cc529b08a0c8fc1eb7c2b70f2df4580647 (patch) | |
tree | fdd8fac9858f10355d1893f9ada7c4dd2f9c167b /crypto/asn1/t_x509.c | |
parent | PR: 1483 (diff) | |
download | openssl-92ada7cc529b08a0c8fc1eb7c2b70f2df4580647.tar.xz openssl-92ada7cc529b08a0c8fc1eb7c2b70f2df4580647.zip |
remove unreachable code
Diffstat (limited to 'crypto/asn1/t_x509.c')
-rw-r--r-- | crypto/asn1/t_x509.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/crypto/asn1/t_x509.c b/crypto/asn1/t_x509.c index 5115b8d0b5..206f681320 100644 --- a/crypto/asn1/t_x509.c +++ b/crypto/asn1/t_x509.c @@ -433,9 +433,9 @@ err: int X509_NAME_print(BIO *bp, X509_NAME *name, int obase) { char *s,*c,*b; - int ret=0,l,ll,i,first=1; + int ret=0,l,i; - ll=80-2-obase; + l=80-2-obase; b=s=X509_NAME_oneline(name,NULL,0); if (!*s) @@ -445,7 +445,6 @@ int X509_NAME_print(BIO *bp, X509_NAME *name, int obase) } s++; /* skip the first slash */ - l=ll; c=s; for (;;) { @@ -467,16 +466,6 @@ int X509_NAME_print(BIO *bp, X509_NAME *name, int obase) (*s == '\0')) #endif { - if ((l <= 0) && !first) - { - first=0; - if (BIO_write(bp,"\n",1) != 1) goto err; - for (i=0; i<obase; i++) - { - if (BIO_write(bp," ",1) != 1) goto err; - } - l=ll; - } i=s-c; if (BIO_write(bp,c,i) != i) goto err; c+=i; |