From: deraadt Date: Thu, 5 Aug 2010 20:11:32 +0000 (+0000) Subject: lid suspend logic was backwards X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=1b8add5302952f91ba97addfa7f0926b332a5a6f;p=openbsd lid suspend logic was backwards --- diff --git a/sys/dev/acpi/acpibtn.c b/sys/dev/acpi/acpibtn.c index 028f5fc0483..739c3a134e5 100644 --- a/sys/dev/acpi/acpibtn.c +++ b/sys/dev/acpi/acpibtn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpibtn.c,v 1.29 2010/08/05 19:23:06 marco Exp $ */ +/* $OpenBSD: acpibtn.c,v 1.30 2010/08/05 20:11:32 deraadt Exp $ */ /* * Copyright (c) 2005 Marco Peereboom * @@ -143,7 +143,7 @@ acpibtn_notify(struct aml_node *node, int notify_type, void *arg) * _LID method. 0 means the lid is closed and we * should go to sleep. */ - if (acpi_lid_suspend) + if (acpi_lid_suspend == 0) break; if (aml_evalinteger(sc->sc_acpi, sc->sc_devnode, "_LID", 0, NULL, &lid))