]> xenbits.xensource.com Git - libvirt.git/commitdiff
Fix a typo in a variable name.
authorJim Meyering <meyering@redhat.com>
Wed, 21 Nov 2007 23:16:11 +0000 (23:16 +0000)
committerJim Meyering <meyering@redhat.com>
Wed, 21 Nov 2007 23:16:11 +0000 (23:16 +0000)
* qemud/qemud.c: Check crl_file, not ca_file, for revocation list,
in remoteInitializeGnuTLS.

Author: Jim Meyering <meyering@redhat.com>

ChangeLog
qemud/qemud.c

index c380648693470d61924221bda6efccac22e66824..bb846cbd0dfecb0441e36d6ccdac6ff500ab1045 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Thu Nov 22 00:14:04 CET 2007 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.
+
 Wed Nov 21 17:29:42 CET 2007 Daniel Veillard <veillard@redhat.com>
 
        * src/xm_internal.c: fix the parsing of predefined domains on
@@ -63,18 +69,18 @@ Sat Nov 17 11:55:33 UTC 2007 Daniel P. Berrange <berrange@redhat.com>
 
 Sat Nov 17 11:04:33 UTC 2007 Daniel P. Berrange <berrange@redhat.com>
 
-        * qemud/Makefile.am: Remove protocol.[chx] from EXTRA_DIST.
-          Remove protocol.h and protocol.c from libvirtd_SOURCES.
-          Remove protocol.c dependency.
-        * qemud/protocol.c, qemud/protocol.h, qemud/protocol.x: Remove files.
-        * qemud/internal.h: Don't include "protocol.h".
-        * qemud/qemud.c: Clean up qemudDispatchClientRead.
-        s/QEMUD_PKT_HEADER_XDR_LEN/REMOTE_MESSAGE_HEADER_XDR_LEN/
-        * qemud/remote.c: In remoteDispatchClientRequest, reflect that the
-        client buffer no longer starts with the 4-byte XDR header length.
-        * qemud/remote_protocol.h: Regenerate.
-        * qemud/remote_protocol.x: Define REMOTE_MESSAGE_HEADER_XDR_LEN.
-        * src/Makefile.am: Remove protocol.h, protocol.c from SERVER_SOURCES.
+       * qemud/Makefile.am: Remove protocol.[chx] from EXTRA_DIST.
+         Remove protocol.h and protocol.c from libvirtd_SOURCES.
+         Remove protocol.c dependency.
+       * qemud/protocol.c, qemud/protocol.h, qemud/protocol.x: Remove files.
+       * qemud/internal.h: Don't include "protocol.h".
+       * qemud/qemud.c: Clean up qemudDispatchClientRead.
+       s/QEMUD_PKT_HEADER_XDR_LEN/REMOTE_MESSAGE_HEADER_XDR_LEN/
+       * qemud/remote.c: In remoteDispatchClientRequest, reflect that the
+       client buffer no longer starts with the 4-byte XDR header length.
+       * qemud/remote_protocol.h: Regenerate.
+       * qemud/remote_protocol.x: Define REMOTE_MESSAGE_HEADER_XDR_LEN.
+       * src/Makefile.am: Remove protocol.h, protocol.c from SERVER_SOURCES.
 
 Thu Nov 15 17:43:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
 
index 55bd805a3a2458711479f2ad1292432290b9dee5..f6cd026ab32b2f04bb3be5662a36c9ffa788d6df 100644 (file)
@@ -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);