projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d0ba311
)
Drop extraneous printf argument in mkcert.sh
author
Viktor Dukhovni
<openssl-users@dukhovni.org>
Thu, 23 Jun 2016 13:28:34 +0000
(23:28 +1000)
committer
Viktor Dukhovni
<openssl-users@dukhovni.org>
Thu, 23 Jun 2016 13:40:29 +0000
(23:40 +1000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
test/certs/mkcert.sh
patch
|
blob
|
history
diff --git
a/test/certs/mkcert.sh
b/test/certs/mkcert.sh
index ced08ea091b422156e92f1ef676ced9ad8178c3f..8863254b32f3af7b65794ac5da97b0ef229fce14 100755
(executable)
--- a/
test/certs/mkcert.sh
+++ b/
test/certs/mkcert.sh
@@
-61,7
+61,7
@@
req() {
stderr_onerror \
openssl req -new -"${OPENSSL_SIGALG}" -key "${key}.pem" \
-config <(printf "[req]\n%s\n%s\n[dn]\n" \
- "prompt = no" "distinguished_name = dn"
"${dn}"
+ "prompt = no" "distinguished_name = dn"
for dn in "$@"; do echo "$dn"; done)
}