Module Name: src
Committed By: dholland
Date: Sun Jun 6 06:20:16 UTC 2010
Modified Files:
src/sys/kern: exec_elf.c
Log Message:
Improve previous: there were two printfs and I'd only noticed and fixed
one of them. PR 43217.
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/kern/exec_elf.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/exec_elf.c
diff -u src/sys/kern/exec_elf.c:1.21 src/sys/kern/exec_elf.c:1.22
--- src/sys/kern/exec_elf.c:1.21 Sun May 2 06:35:21 2010
+++ src/sys/kern/exec_elf.c Sun Jun 6 06:20:16 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: exec_elf.c,v 1.21 2010/05/02 06:35:21 dholland Exp $ */
+/* $NetBSD: exec_elf.c,v 1.22 2010/06/06 06:20:16 dholland Exp $ */
/*-
* Copyright (c) 1994, 2000, 2005 The NetBSD Foundation, Inc.
@@ -57,7 +57,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exec_elf.c,v 1.21 2010/05/02 06:35:21 dholland Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exec_elf.c,v 1.22 2010/06/06 06:20:16 dholland Exp $");
#ifdef _KERNEL_OPT
#include "opt_pax.h"
@@ -902,7 +902,7 @@
default:
#ifdef DIAGNOSTIC
- printf("%s: unknown note type %d\n", epp->ep_name,
+ printf("%s: unknown note type %d\n", epp->ep_kname,
np->n_type);
#endif
break;