summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authoretheisen <etheisen@openbsd.org>1996-11-06 20:56:12 +0000
committeretheisen <etheisen@openbsd.org>1996-11-06 20:56:12 +0000
commit7d16a554a563fcbbb3c03b19cc76c903aae5f9b3 (patch)
treeed36158f1d85199b4f7c7ff54f3922b89937117f /sys
parentnegative logic. (diff)
downloadwireguard-openbsd-7d16a554a563fcbbb3c03b19cc76c903aae5f9b3.tar.xz
wireguard-openbsd-7d16a554a563fcbbb3c03b19cc76c903aae5f9b3.zip
Negative logic.
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/exec_olf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/exec_olf.h b/sys/sys/exec_olf.h
index 7b4280e2b4c..4f2d4048b7a 100644
--- a/sys/sys/exec_olf.h
+++ b/sys/sys/exec_olf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: exec_olf.h,v 1.4 1996/11/06 20:12:12 etheisen Exp $ */
+/* $OpenBSD: exec_olf.h,v 1.5 1996/11/06 20:56:12 etheisen Exp $ */
/*
* Copyright (c) 1996 Erik Theisen. All rights reserved.
*
@@ -121,8 +121,8 @@
#define ODYNAMIC 1 /* Dynamically linked */
/* e_ident[] strip */
-#define OSTRIP_N 0 /* NOT Stripped */
-#define OSTRIP 1 /* Stripped */
+#define OSTRIP 0 /* Stripped */
+#define OSTRIP_N 1 /* Not Stripped */
/* e_ident */
#define IS_OLF(ehdr) ((ehdr).e_ident[OI_MAG0] == OLFMAG0 && \