From 415cd6d8535cbf98d88bfd315c4b548efe676b44 Mon Sep 17 00:00:00 2001 From: Jiri Pirko Date: Fri, 16 Aug 2013 16:12:50 +0200 Subject: [PATCH] nm-manager: fix goto in system_create_virtual_device() in team section Signed-off-by: Jiri Pirko --- src/nm-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nm-manager.c b/src/nm-manager.c index 26d87d285..5776f4011 100644 --- a/src/nm-manager.c +++ b/src/nm-manager.c @@ -1375,7 +1375,7 @@ system_create_virtual_device (NMManager *self, NMConnection *connection) && nm_platform_get_error () != NM_PLATFORM_ERROR_EXISTS) { nm_log_warn (LOGD_DEVICE, "(%s): failed to add team master interface for '%s'", iface, nm_connection_get_id (connection)); - goto out; + goto unblock; } device = nm_device_team_new (iface);