[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[libvirt] [PATCH 1/2] qemu: return error condition
- From: Michael Santos <michael santos gmail com>
- To: libvir-list redhat com
- Subject: [libvirt] [PATCH 1/2] qemu: return error condition
- Date: Fri, 8 Jul 2011 11:13:30 -0400
---
src/qemu/qemu_bridge_filter.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/qemu/qemu_bridge_filter.c b/src/qemu/qemu_bridge_filter.c
index f700631..03ed284 100644
--- a/src/qemu/qemu_bridge_filter.c
+++ b/src/qemu/qemu_bridge_filter.c
@@ -78,6 +78,7 @@ networkAllowMacOnPort(struct qemud_driver *driver,
virReportSystemError(err,
_("failed to add ebtables rule to allow routing to '%s'"),
ifname);
+ return err;
}
return 0;
@@ -99,6 +100,7 @@ networkDisallowMacOnPort(struct qemud_driver *driver,
virReportSystemError(err,
_("failed to add ebtables rule to allow routing to '%s'"),
ifname);
+ return err;
}
return 0;
--
1.7.0.4
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]