Diff between d95746a9f699f89545fd7f91ae15188c56303c6e and b5a1ee8d3039f4f27c68487511b111dfddaf7f05

Changed Files

File Additions Deletions Status
profiles/network/bnep.c +4 -2 modified

Full Patch

diff --git a/profiles/network/bnep.c b/profiles/network/bnep.c
index adddc33..779c5fb 100644
--- a/profiles/network/bnep.c
+++ b/profiles/network/bnep.c
@@ -650,6 +650,7 @@ int bnep_server_add(int sk, char *bridge, char *iface, const bdaddr_t *addr,
 	/* Processing BNEP_SETUP_CONNECTION_REQUEST_MSG */
 	rsp = bnep_setup_decode(sk, req, &dst);
 	if (rsp != BNEP_SUCCESS) {
+		err = -rsp;
 		error("bnep: error while decoding setup connection request: %d",
 									rsp);
 		goto reply;
@@ -673,10 +674,11 @@ int bnep_server_add(int sk, char *bridge, char *iface, const bdaddr_t *addr,
 		rsp = BNEP_CONN_NOT_ALLOWED;
 
 reply:
-	err = bnep_send_ctrl_rsp(sk, BNEP_SETUP_CONN_RSP, rsp);
-	if (err < 0)
+	if (bnep_send_ctrl_rsp(sk, BNEP_SETUP_CONN_RSP, rsp) < 0) {
+		err = -errno;
 		error("bnep: send ctrl rsp error: %s (%d)", strerror(errno),
 									errno);
+	}
 
 	return err;
 }