From patchwork Wed Jul 8 00:11:35 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [01/31] petitboot: Fix client fd check From: Geoff Levand X-Patchwork-Id: 29544 Message-Id: <20090708001135.041667840@am.sony.com> To: Jeremy Kerr Cc: cbe-oss-dev@ozlabs.org Date: Tue, 07 Jul 2009 17:11:35 -0700 Fix a minor typo in the discover-client file descriptor check. Signed-off-by: Geoff Levand --- ui/common/discover-client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/ui/common/discover-client.c +++ b/ui/common/discover-client.c @@ -46,7 +46,7 @@ struct discover_client* discover_client_ client->ops.cb_arg = cb_arg; client->fd = socket(AF_UNIX, SOCK_STREAM, 0); - if (!client->fd < 0) { + if (client->fd < 0) { pb_log("%s: socket: %s\n", __func__, strerror(errno)); goto out_err; }