mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 13:45:38 +00:00
Fix a typo in a variable name.
* qemud/qemud.c: Check crl_file, not ca_file, for revocation list, in remoteInitializeGnuTLS. Author: Jim Meyering <meyering@redhat.com>
This commit is contained in:
parent
1ad3d2cdd8
commit
3e4ea06702
30
ChangeLog
30
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>
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user