diff options
author | Richard Levitte <levitte@openssl.org> | 2004-03-21 22:50:20 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2004-03-21 22:50:20 +0000 |
commit | b8b0b5d8567c260bde005d7a0964c261f6be2752 (patch) | |
tree | ae110cbd133fed8d5796dc6953a4dde973843a21 | |
parent | ec5d8a54e9ea80599bf67a7c9349b49d430dde62 (diff) | |
download | openssl-new-b8b0b5d8567c260bde005d7a0964c261f6be2752.tar.gz |
Change \t to real tab in echo argument.
PR: 847
-rw-r--r-- | tools/c_issuer | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/c_issuer b/tools/c_issuer index 4c691201bb..55821ab740 100644 --- a/tools/c_issuer +++ b/tools/c_issuer @@ -6,5 +6,5 @@ for i in $* do n=`openssl x509 -issuer -noout -in $i` - echo "$i\t$n" + echo "$i $n" done |