aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>1999-04-07 02:48:43 +0000
committerJohn Polstra <jdp@FreeBSD.org>1999-04-07 02:48:43 +0000
commita16ed197f293a2023b6190546e50a59d1e225c79 (patch)
treeb3fa4185b24760b23da1eeb81bda066de3eb870f /libexec
parent14f5fa0596e0036d478bfa9a560e7d14ba6091e0 (diff)
downloadsrc-a16ed197f293a2023b6190546e50a59d1e225c79.tar.gz
src-a16ed197f293a2023b6190546e50a59d1e225c79.zip
Fix a couple of typos in comments.
Notes
Notes: svn path=/head/; revision=45399
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 dc2c83b973ac..5faa5d73809d 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.17 1999/04/05 02:36:40 jdp Exp $
+ * $Id: rtld.c,v 1.18 1999/04/07 02:43:11 jdp Exp $
*/
/*
@@ -1306,7 +1306,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++) {
@@ -1320,7 +1320,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.
*/