diff options
author | 1996-11-06 20:56:12 +0000 | |
---|---|---|
committer | 1996-11-06 20:56:12 +0000 | |
commit | 7d16a554a563fcbbb3c03b19cc76c903aae5f9b3 (patch) | |
tree | ed36158f1d85199b4f7c7ff54f3922b89937117f /sys | |
parent | negative logic. (diff) | |
download | wireguard-openbsd-7d16a554a563fcbbb3c03b19cc76c903aae5f9b3.tar.xz wireguard-openbsd-7d16a554a563fcbbb3c03b19cc76c903aae5f9b3.zip |
Negative logic.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/exec_olf.h | 6 |
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 && \ |