summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1999-04-28 00:54:55 +0000
committerJohn Polstra <jdp@FreeBSD.org>1999-04-28 00:54:55 +0000
commit85acef673b17c792017e8592937cb5c52d9e7725 (patch)
tree8a6c82eb7bddd021ea1c2472191a6be6b7fed685 /libexec
parentca220c20111c776574f10aeafd47bbe1e48cc0ff (diff)
Notes
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/rtld.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c
index da04551abd74..528547c2b9e7 100644
--- a/libexec/rtld-elf/rtld.c
+++ b/libexec/rtld-elf/rtld.c
@@ -22,7 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: rtld.c,v 1.13.2.3 1999/04/07 05:10:04 jdp Exp $
+ * $Id: rtld.c,v 1.13.2.4 1999/04/07 05:12:41 jdp Exp $
*/
/*
@@ -1291,7 +1291,7 @@ dladdr(const void *addr, Dl_info *info)
info->dli_sname = NULL;
/*
- * Walk the symbol list looking for the symbol whosse address is
+ * Walk the symbol list looking for the symbol whose address is
* closest to the address sent in.
*/
for (symoffset = 0; symoffset < obj->nchains; symoffset++) {
@@ -1305,7 +1305,7 @@ dladdr(const void *addr, Dl_info *info)
continue;
/*
- *If the symbol is greater than the specified address, or if it
+ * If the symbol is greater than the specified address, or if it
* is further away from addr than the current nearest symbol,
* then reject it.
*/