diff options
| author | perry <perry@NetBSD.org> | 1998-08-09 20:36:58 +0000 |
|---|---|---|
| committer | perry <perry@NetBSD.org> | 1998-08-09 20:36:58 +0000 |
| commit | e1601dc2ca602ea6882b1b2e8c1d7a429d11250f (patch) | |
| tree | 70f0370a926ae78ee966430a9401f96d2f07f71b /sys/compat/linux/common/linux_exec_elf32.c | |
| parent | 4ffebebb25b0bff26e588f2e103014398c6c9ccc (diff) | |
bzero->memset, bcopy->memcpy, bcmp->memcmp
Diffstat (limited to 'sys/compat/linux/common/linux_exec_elf32.c')
| -rw-r--r-- | sys/compat/linux/common/linux_exec_elf32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/common/linux_exec_elf32.c b/sys/compat/linux/common/linux_exec_elf32.c index 19c6e05c1f1..4f95a889b63 100644 --- a/sys/compat/linux/common/linux_exec_elf32.c +++ b/sys/compat/linux/common/linux_exec_elf32.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_exec_elf32.c,v 1.27 1998/07/28 21:39:54 thorpej Exp $ */ +/* $NetBSD: linux_exec_elf32.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; |
