mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
bridge_driver.c: Fix autoconf setting
Code altered so that it is consistent with the associated comment. The 'autoconf' variable is forced to zero. Signed-off-by: Neil Wilson <neil@brightbox.co.uk>
This commit is contained in:
parent
be5ec76630
commit
92888c803b
1
.mailmap
1
.mailmap
@ -26,6 +26,7 @@
|
||||
<fsimonce@redhat.com> <federico.simoncelli@gmail.com>
|
||||
<marcandre.lureau@redhat.com> <marcandre.lureau@gmail.com>
|
||||
<supriyak@linux.vnet.ibm.com> <supriyak@in.ibm.com>
|
||||
<neil@aldur.co.uk> <neil@brightbox.co.uk>
|
||||
|
||||
# Name consolidation:
|
||||
# Preferred author spelling <preferred email>
|
||||
|
@ -1566,9 +1566,9 @@ networkSetIPv6Sysctls(virNetworkObjPtr network)
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
if (virFileWriteStr(field, "1", 0) < 0) {
|
||||
if (virFileWriteStr(field, "0", 0) < 0) {
|
||||
virReportSystemError(errno,
|
||||
_("cannot enable %s"), field);
|
||||
_("cannot disable %s"), field);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user