diff mbox

[LEDE-DEV,2/3] ubusd: rename goto label from `error` to `out`

Message ID 1499260882-7735-1-git-send-email-ardeleanalex@gmail.com
State Accepted
Delegated to: Felix Fietkau
Headers show

Commit Message

Alexandru Ardelean July 5, 2017, 1:21 p.m. UTC
Semantic has changed a bit.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
---
 ubusd_proto.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff mbox

Patch

diff --git a/ubusd_proto.c b/ubusd_proto.c
index 441d084..b084b86 100644
--- a/ubusd_proto.c
+++ b/ubusd_proto.c
@@ -345,22 +345,22 @@  static int ubusd_handle_response(struct ubus_client *cl, struct ubus_msg_buf *ub
 	if (!attr[UBUS_ATTR_OBJID] ||
 	    (ub->hdr.type == UBUS_MSG_STATUS && !attr[UBUS_ATTR_STATUS]) ||
 	    (ub->hdr.type == UBUS_MSG_DATA && !attr[UBUS_ATTR_DATA]))
-		goto error;
+		goto out;
 
 	obj = ubusd_find_object(blob_get_u32(attr[UBUS_ATTR_OBJID]));
 	if (!obj)
-		goto error;
+		goto out;
 
 	if (cl != obj->client)
-		goto error;
+		goto out;
 
 	cl = ubusd_get_client_by_id(ub->hdr.peer);
 	if (!cl)
-		goto error;
+		goto out;
 
 	ub->hdr.peer = blob_get_u32(attr[UBUS_ATTR_OBJID]);
 	ubus_msg_send(cl, ub);
-error:
+out:
 	return -1;
 }