From: Christophe Fergeau Date: Wed, 18 Sep 2013 12:01:26 +0000 (+0200) Subject: daemon: Fix 'caert.pem' typo in privileged help output X-Git-Tag: CVE-2013-4311~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=521b78d0afb9aff3c9f8d593e63c3d94b8f28f5d;p=thirdparty%2Flibvirt.git daemon: Fix 'caert.pem' typo in privileged help output The help message indicates that the CA certificate is $sysconfdir/pki/CA/caert.pem while the actual path is $sysconfdir/pki/CA/cacert.pem Signed-off-by: Christophe Fergeau Signed-off-by: Eric Blake --- diff --git a/daemon/libvirtd.c b/daemon/libvirtd.c index c9cd1a16d1..87d42b2110 100644 --- a/daemon/libvirtd.c +++ b/daemon/libvirtd.c @@ -1063,7 +1063,7 @@ daemonUsage(const char *argv0, bool privileged) " %s/run/libvirt/libvirt-sock-ro\n" "\n" " TLS:\n" - " CA certificate: %s/pki/CA/caert.pem\n" + " CA certificate: %s/pki/CA/cacert.pem\n" " Server certificate: %s/pki/libvirt/servercert.pem\n" " Server private key: %s/pki/libvirt/private/serverkey.pem\n" "\n"