summaryrefslogtreecommitdiffstats
path: root/extra/ca-certificates/ca-certificates-20080514-warn-on-bad-symlinks.patch
blob: f9462da658ab1bc564a90108b35101c887163bfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
http://bugs.gentoo.org/234816
http://bugs.debian.org/495224

Do not redirect error output from c_rehash in update-ca-certificates, as
some errors, especially broken symlinks, can cause trouble for some
applications like current openldap.

2008-08-15 Martin von Gagern <Martin.vGagern@gmx.net>

--- usr/sbin/update-ca-certificates
+++ usr/sbin/update-ca-certificates
@@ -83,7 +83,7 @@
   # only run if set of files has changed
 
   if [ "$verbose" = 0 ]; then
-    c_rehash . > /dev/null 2>&1
+    c_rehash . > /dev/null
   else
     c_rehash .
   fi