summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authoretheisen <etheisen@cvs.openbsd.org>1996-11-06 20:56:13 +0000
committeretheisen <etheisen@cvs.openbsd.org>1996-11-06 20:56:13 +0000
commit402ae948ea0db40302f5ddb42dae9cbf969d338c (patch)
treef41215a43d35fec205011fad332225656be1e04c /sys
parenta03644418a4628879b26e326752d94cb6a2825d1 (diff)
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 && \