diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-02-18 16:52:19 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-02-18 16:52:19 +0000 |
commit | d3c3f552ed1d862fd453bfbb7c8ce52f0fce2481 (patch) | |
tree | cfaf03105c19149d892a1915a73cab77838f4e8f | |
parent | d4d251f238243e2100e0d962c9a63cc5444f4fc2 (diff) |
fix typo
-rw-r--r-- | sbin/unwind/captiveportal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/unwind/captiveportal.c b/sbin/unwind/captiveportal.c index e0989699e54..d4e1b5fb5f3 100644 --- a/sbin/unwind/captiveportal.c +++ b/sbin/unwind/captiveportal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: captiveportal.c,v 1.6 2019/02/18 07:50:14 florian Exp $ */ +/* $OpenBSD: captiveportal.c,v 1.7 2019/02/18 16:52:18 deraadt Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -352,7 +352,7 @@ captiveportal_dispatch_main(int fd, short event, void *bula) uw_forwarder, entry); break; case IMSG_RECONF_DOT_FORWARDER: - if (IMSG_DATA_SIZE(imsg) ! =sizeof(struct uw_forwarder)) + if (IMSG_DATA_SIZE(imsg) != sizeof(struct uw_forwarder)) fatalx("%s: IMSG_RECONF_DOT_FORWARDER wrong " "length: %lu", __func__, IMSG_DATA_SIZE(imsg)); |