From: John Marino Date: Sat, 14 Jan 2012 11:07:49 +0000 (+0100) Subject: rtld: fix some typos X-Git-Tag: v3.0.0~86 X-Git-Url: https://gitweb.dragonflybsd.org/~tuxillo/dragonfly.git/commitdiff_plain/30aefd4f60dd5adcb07a6c4d46c62f763770541f rtld: fix some typos --- diff --git a/libexec/rtld-elf/rtld.h b/libexec/rtld-elf/rtld.h index c463b68312..658997557f 100644 --- a/libexec/rtld-elf/rtld.h +++ b/libexec/rtld-elf/rtld.h @@ -213,7 +213,7 @@ typedef struct Struct_Obj_Entry { Objlist dagmembers; /* DAG has these members (%) */ dev_t dev; /* Object's filesystem's device */ ino_t ino; /* Object's inode number */ - void *priv; /* Platform-dependant */ + void *priv; /* Platform-dependent */ } Obj_Entry; #define RTLD_MAGIC 0xd550b87a @@ -221,7 +221,7 @@ typedef struct Struct_Obj_Entry { /* Flags to be passed into symlook_ family of functions. */ #define SYMLOOK_IN_PLT 0x01 /* Lookup for PLT symbol */ -#define SYMLOOK_DLSYM 0x02 /* Return newes versioned symbol. Used by +#define SYMLOOK_DLSYM 0x02 /* Return newest versioned symbol. Used by dlsym. */ /* Flags for load_object(). */ diff --git a/libexec/rtld-elf/x86_64/rtld_start.S b/libexec/rtld-elf/x86_64/rtld_start.S index 8778900964..f59c861ddc 100644 --- a/libexec/rtld-elf/x86_64/rtld_start.S +++ b/libexec/rtld-elf/x86_64/rtld_start.S @@ -61,7 +61,7 @@ resident_start: * and (2) "reloff", the byte offset of the appropriate relocation entry * in the PLT relocation table. * - * We are careful to preserve all registers, even the the caller-save + * We are careful to preserve all registers, even the caller-save * registers. That is because this code may be invoked by low-level * assembly-language code that is not ABI-compliant. *