From 92888c803b6e2479fb0034a24fc3de24761a0e94 Mon Sep 17 00:00:00 2001 From: Neil Wilson Date: Mon, 3 Oct 2011 10:58:55 +0100 Subject: [PATCH] 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 --- .mailmap | 1 + src/network/bridge_driver.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.mailmap b/.mailmap index 583fe7bc80..56d5092686 100644 --- a/.mailmap +++ b/.mailmap @@ -26,6 +26,7 @@ + # Name consolidation: # Preferred author spelling diff --git a/src/network/bridge_driver.c b/src/network/bridge_driver.c index 996074575a..51023a3247 100644 --- a/src/network/bridge_driver.c +++ b/src/network/bridge_driver.c @@ -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; } -- GitLab