[Libvir] (remoteInitializeGnuTLS): Fix a typo in a variable name.

2007-11-21 Jim Meyering <meyering@redhat.com> Fix a typo in a variable name. * qemud/qemud.c: Check crl_file, not ca_file, for revocation list, in remoteInitializeGnuTLS. diff --git a/qemud/qemud.c b/qemud/qemud.c index 55bd805..f6cd026 100644 --- a/qemud/qemud.c +++ b/qemud/qemud.c @@ -165,7 +165,7 @@ remoteInitializeGnuTLS (void) } if (crl_file && crl_file[0] != '\0') { - if (remoteCheckCertFile("CA revocation list", ca_file) < 0) + if (remoteCheckCertFile("CA revocation list", crl_file) < 0) return -1; qemudDebug ("loading CRL from %s", crl_file); -- 1.5.3.6.736.gb7f30

On Wed, Nov 21, 2007 at 08:24:30PM +0100, Jim Meyering wrote:
2007-11-21 Jim Meyering <meyering@redhat.com>
Fix a typo in a variable name. * qemud/qemud.c: Check crl_file, not ca_file, for revocation list, in remoteInitializeGnuTLS.
oh, right! Looks like a cut and paste error, +1 Daniel -- Red Hat Virtualization group http://redhat.com/virtualization/ Daniel Veillard | virtualization library http://libvirt.org/ veillard@redhat.com | libxml GNOME XML XSLT toolkit http://xmlsoft.org/ http://veillard.com/ | Rpmfind RPM search engine http://rpmfind.net/

Daniel Veillard <veillard@redhat.com> wrote:
On Wed, Nov 21, 2007 at 08:24:30PM +0100, Jim Meyering wrote:
2007-11-21 Jim Meyering <meyering@redhat.com>
Fix a typo in a variable name. * qemud/qemud.c: Check crl_file, not ca_file, for revocation list, in remoteInitializeGnuTLS.
oh, right! Looks like a cut and paste error, +1
Committed.
participants (2)
-
Daniel Veillard
-
Jim Meyering