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:
Jim Meyering 2007-11-21 23:16:11 +00:00
parent 1ad3d2cdd8
commit 3e4ea06702
2 changed files with 19 additions and 13 deletions

View File

@ -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

View 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);