diff options
author | Rob Austein <sra@hactrn.net> | 2006-09-21 20:17:28 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2006-09-21 20:17:28 +0000 |
commit | f7d070af93de4053439e917ae0b6169cde9a1b75 (patch) | |
tree | 4cd5ed16d8e8bc60e92cbd5b238be979f6f3a685 | |
parent | 5a4128d90228f2db735888ba803d24490e88337e (diff) |
Checkpoint
svn path=/tests/uri/uri.c; revision=306
-rw-r--r-- | tests/uri/uri.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/uri/uri.c b/tests/uri/uri.c index 5bded458..e9e9c648 100644 --- a/tests/uri/uri.c +++ b/tests/uri/uri.c @@ -55,7 +55,6 @@ enum decode_errors { decode_no_distributionPoint, decode_not_GeneralName, decode_not_URI, - decode_wrong_method }; #define lose(_err_) do { err = _err_; goto done; } while (0) @@ -94,7 +93,7 @@ static enum decode_errors decode_crldp(X509 *x, int verbose) lose(decode_not_GeneralName); if (!strncmp(n->d.uniformResourceIdentifier->data, "rsync://", sizeof("rsync://") - 1)) { - printf("CRL: %s\n", n->d.uniformResourceIdentifier->data); + printf(" CRL: %s\n", n->d.uniformResourceIdentifier->data); goto done; } } @@ -124,7 +123,7 @@ static enum decode_errors decode_access(X509 *x, int verbose, char *tag, !memcmp(a->method->data, oid, oidlen) && !strncmp(a->location->d.uniformResourceIdentifier->data, "rsync://", sizeof("rsync://") - 1)) { - printf("%s: %s\n", tag, a->location->d.uniformResourceIdentifier->data); + printf(" %s: %s\n", tag, a->location->d.uniformResourceIdentifier->data); goto done; } } |