summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/acl_binding_cmds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/acl_binding_cmds.cpp')
-rw-r--r--extras/vom/vom/acl_binding_cmds.cpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/extras/vom/vom/acl_binding_cmds.cpp b/extras/vom/vom/acl_binding_cmds.cpp
index 8c33cd47b79..062c1b90c9f 100644
--- a/extras/vom/vom/acl_binding_cmds.cpp
+++ b/extras/vom/vom/acl_binding_cmds.cpp
@@ -34,9 +34,7 @@ l3_bind_cmd::issue(connection& con)
VAPI_CALL(req.execute());
- m_hw_item.set(wait());
-
- return rc_t::OK;
+ return (wait());
}
template <>
@@ -64,9 +62,7 @@ l3_unbind_cmd::issue(connection& con)
VAPI_CALL(req.execute());
- m_hw_item.set(wait());
-
- return rc_t::OK;
+ return (wait());
}
template <>
@@ -116,9 +112,7 @@ l2_bind_cmd::issue(connection& con)
VAPI_CALL(req.execute());
- m_hw_item.set(wait());
-
- return rc_t::OK;
+ return (wait());
}
template <>
@@ -145,9 +139,7 @@ l2_unbind_cmd::issue(connection& con)
VAPI_CALL(req.execute());
- m_hw_item.set(wait());
-
- return rc_t::OK;
+ return (wait());
}
template <>