mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06:00
remote: convert to typesafe virConf accessors
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
544f087e41
commit
f3b860e871
@ -864,18 +864,9 @@ doRemoteOpen(virConnectPtr conn,
|
|||||||
/* Connect to the remote service. */
|
/* Connect to the remote service. */
|
||||||
switch (transport) {
|
switch (transport) {
|
||||||
case trans_tls:
|
case trans_tls:
|
||||||
if (conf && !tls_priority) {
|
if (conf && !tls_priority &&
|
||||||
virConfValuePtr val = virConfGetValue(conf, "tls_priority");
|
virConfGetValueString(conf, "tls_priority", &tls_priority) < 0)
|
||||||
if (val) {
|
goto failed;
|
||||||
if (val->type != VIR_CONF_STRING) {
|
|
||||||
virReportError(VIR_ERR_INVALID_ARG, "%s",
|
|
||||||
_("Config file 'tls_priority' must be a string"));
|
|
||||||
goto failed;
|
|
||||||
}
|
|
||||||
if (VIR_STRDUP(tls_priority, val->str) < 0)
|
|
||||||
goto failed;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef WITH_GNUTLS
|
#ifdef WITH_GNUTLS
|
||||||
priv->tls = virNetTLSContextNewClientPath(pkipath,
|
priv->tls = virNetTLSContextNewClientPath(pkipath,
|
||||||
|
Loading…
Reference in New Issue
Block a user