summaryrefslogtreecommitdiff
path: root/sbin/update-ca-certificates
diff options
context:
space:
mode:
authorMichael Shuler <michael@pbandjelly.org>2018-04-05 17:59:16 -0500
committerMichael Shuler <michael@pbandjelly.org>2018-04-05 17:59:16 -0500
commit1bc87e0b41a04551a93d4e784e158b044c18792a (patch)
tree43b35a617c2178e5219a80d58c264f0962ebd3e4 /sbin/update-ca-certificates
parent82051fd0037f9f1ba4dbb713fbe68e333523d498 (diff)
downloadca-certificates-1bc87e0b41a04551a93d4e784e158b044c18792a.tar.gz
Update openssl dependency to >= 1.1.0
Switch to `openssl rehash` and drop usage of `c_rehash` script
Diffstat (limited to 'sbin/update-ca-certificates')
-rwxr-xr-xsbin/update-ca-certificates4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/update-ca-certificates b/sbin/update-ca-certificates
index ac59ae9..2d553a5 100755
--- a/sbin/update-ca-certificates
+++ b/sbin/update-ca-certificates
@@ -174,9 +174,9 @@ then
# only run if set of files has changed
if [ "$verbose" = 0 ]
then
- c_rehash . > /dev/null
+ openssl rehash -compat . > /dev/null
else
- c_rehash .
+ openssl rehash -compat .
fi
fi