diff options
author | jdp <jdp@FreeBSD.org> | 1999-04-07 02:48:43 +0000 |
---|---|---|
committer | jdp <jdp@FreeBSD.org> | 1999-04-07 02:48:43 +0000 |
commit | 829fcc9602da23c59624bf5c545b35b43f72cd57 (patch) | |
tree | fc0fd21b6345607e969859798c5af00d0e4535d8 /libexec | |
parent | fd4074472e9ad1ab43fe3c0be1485762859d7254 (diff) | |
download | FreeBSD-src-829fcc9602da23c59624bf5c545b35b43f72cd57.zip FreeBSD-src-829fcc9602da23c59624bf5c545b35b43f72cd57.tar.gz |
Fix a couple of typos in comments.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/rtld-elf/rtld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libexec/rtld-elf/rtld.c b/libexec/rtld-elf/rtld.c index dc2c83b..5faa5d7 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. */ |