mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
util: Fix broken syntax-check
Commit id '743db933' broke at least one syntax check rule regard open/close braces and perhaps more with spacing. Just remove the braces
This commit is contained in:
parent
743db933ed
commit
55be2920c3
@ -123,9 +123,8 @@ int virAuthConfigLookup(virAuthConfigPtr auth,
|
||||
|
||||
if (!virKeyFileHasGroup(auth->keyfile, authgroup)) {
|
||||
VIR_FREE(authgroup);
|
||||
if (virAsprintf(&authgroup, "auth-%s-%s", service, "default") < 0){
|
||||
if (virAsprintf(&authgroup, "auth-%s-%s", service, "default") < 0)
|
||||
goto cleanup;
|
||||
}
|
||||
}
|
||||
|
||||
if (!virKeyFileHasGroup(auth->keyfile, authgroup)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user