Add missing braces.

Submitted by:	Andrew Lankford <arlankfo@141.com>
This commit is contained in:
Archie Cobbs 2003-04-28 20:38:05 +00:00
parent 14ce5bd49b
commit 7d78074030
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114178

View File

@ -749,12 +749,13 @@ ng_ksocket_rcvmsg(node_p node, item_p item, hook_p lasthook)
so->so_state &= ~SS_ISCONNECTING;
ERROUT(error);
}
if ((so->so_state & SS_ISCONNECTING) != 0)
if ((so->so_state & SS_ISCONNECTING) != 0) {
/* We will notify the sender when we connect */
priv->response_token = msg->header.token;
raddr = priv->response_addr = NGI_RETADDR(item);
priv->flags |= KSF_CONNECTING;
ERROUT(EINPROGRESS);
}
break;
}