diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-12-24 08:58:47 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2014-12-24 08:58:47 +0000 |
commit | 6af23152ce1f04b8823bc4f0fe5f7537bb8bcd09 (patch) | |
tree | e1d6c998a90aa572785851171883043e332c07d2 /lib/csu/boot.h | |
parent | 43b73c4a84ecdf5beb73492828afd0334f74e2ce (diff) |
Fix previos. Pointed out by kurt@.
Diffstat (limited to 'lib/csu/boot.h')
-rw-r--r-- | lib/csu/boot.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/csu/boot.h b/lib/csu/boot.h index a1aab4cdf99..068805bf194 100644 --- a/lib/csu/boot.h +++ b/lib/csu/boot.h @@ -1,4 +1,4 @@ -/* $OpenBSD: boot.h,v 1.4 2014/12/23 20:38:20 kettenis Exp $ */ +/* $OpenBSD: boot.h,v 1.5 2014/12/24 08:58:46 kettenis Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -262,7 +262,7 @@ _dl_boot_bind(const long sp, long *dl_data, Elf_Dyn *dynamicp) * them read-only. */ - if (dl_data[AUX_pagesz] == 0) + if (dl_data[AUX_pagesz] != 0) pagesize = dl_data[AUX_pagesz]; else pagesize = 4096; |