From be146ad2bce0b5377433fa2fe6602b3d4c14dead Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 5 Jul 2017 16:21:22 +0300 Subject: [PATCH] ubusd: rename goto label from `error` to `out` Semantic has changed a bit. Signed-off-by: Alexandru Ardelean --- ubusd_proto.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; } -- 2.11.0