diff options
Diffstat (limited to 'sys/compat/linux/common/linux_exec.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_exec.c b/sys/compat/linux/common/linux_exec.c index d7e8a572202..c968b33eb5c 100644 --- a/sys/compat/linux/common/linux_exec.c +++ b/sys/compat/linux/common/linux_exec.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec.c,v 1.27 1998/07/28 21:39:54 thorpej Exp $ */ +/* $NetBSD: linux_exec.c,v 1.28 1998/08/09 20:37:54 perry Exp $ */ /* * Copyright (c) 1995 Frank van der Linden @@ -413,7 +413,7 @@ linux_elf32_signature(p, epp, eh) /* * error is 0, if the signatures match we are done. */ - if (bcmp(buf, signature, sizeof(signature) - 1) == 0) + if (memcmp(buf, signature, sizeof(signature) - 1) == 0) goto out; } error = EFTYPE; |
