Module Name: src
Committed By: skrll
Date: Sun Jan 10 06:37:33 UTC 2010
Modified Files:
src/libexec/ld.elf_so: rtld.c
Log Message:
Fixup comment.
To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/libexec/ld.elf_so/rtld.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/libexec/ld.elf_so/rtld.c
diff -u src/libexec/ld.elf_so/rtld.c:1.127 src/libexec/ld.elf_so/rtld.c:1.128
--- src/libexec/ld.elf_so/rtld.c:1.127 Wed Dec 2 15:50:13 2009
+++ src/libexec/ld.elf_so/rtld.c Sun Jan 10 06:37:32 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld.c,v 1.127 2009/12/02 15:50:13 christos Exp $ */
+/* $NetBSD: rtld.c,v 1.128 2010/01/10 06:37:32 skrll Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: rtld.c,v 1.127 2009/12/02 15:50:13 christos Exp $");
+__RCSID("$NetBSD: rtld.c,v 1.128 2010/01/10 06:37:32 skrll Exp $");
#endif /* not lint */
#include <err.h>
@@ -231,10 +231,12 @@
_rtld_objself.strtab = "_rtld_sym_zero";
/*
- * Set value to -relocabase so that
- * _rtld_objself.relocbase + _rtld_smy_zero.st_value == 0
+ * Set value to -relocbase so that
+ *
+ * _rtld_objself.relocbase + _rtld_sym_zero.st_value == 0
+ *
* This allows unresolved references to weak symbols to be computed
- * to value a value of 0.
+ * to a value of 0.
*/
_rtld_sym_zero.st_value = -(uintptr_t)relocbase;