mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-27 18:03:50 +03:00
util: Alter virAuthGet*Path API return processing
If we never find the valid credtype in the list, then we'd return NULL without an error signaled forcing the caller to generate one that will probably be incorrect. Let's be specific. Signed-off-by: John Ferlan <jferlan@redhat.com> Reviewed-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
This commit is contained in:
parent
efd8261541
commit
5f0a9c45b3
@ -191,10 +191,12 @@ virAuthGetUsernamePath(const char *path,
|
||||
if ((*(auth->cb))(&cred, 1, auth->cbdata) < 0)
|
||||
VIR_FREE(cred.result);
|
||||
|
||||
break;
|
||||
return cred.result;
|
||||
}
|
||||
|
||||
return cred.result;
|
||||
virReportError(VIR_ERR_AUTH_FAILED, "%s",
|
||||
_("Missing VIR_CRED_AUTHNAME credential type"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
@ -267,10 +269,13 @@ virAuthGetPasswordPath(const char *path,
|
||||
if ((*(auth->cb))(&cred, 1, auth->cbdata) < 0)
|
||||
VIR_FREE(cred.result);
|
||||
|
||||
break;
|
||||
return cred.result;
|
||||
}
|
||||
|
||||
return cred.result;
|
||||
virReportError(VIR_ERR_AUTH_FAILED, "%s",
|
||||
_("Missing VIR_CRED_PASSPHRASE or VIR_CRED_NOECHOPROMPT "
|
||||
"credential type"));
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user