diff options
| author | Ondřej Bílka <neleai@seznam.cz> | 2013-08-21 19:48:48 +0200 |
|---|---|---|
| committer | Ondřej Bílka <neleai@seznam.cz> | 2013-08-21 19:48:48 +0200 |
| commit | c0c3f78afb6070721848574e2e5dff5cfa20e28d (patch) | |
| tree | 6a1d44ea1e2f3d5425c05fd485c54aa15fda75f6 | |
| parent | 46ed103824ff42668ddfc36c1b3fdb9219d48eee (diff) | |
| download | glibc-c0c3f78afb6070721848574e2e5dff5cfa20e28d.tar.xz glibc-c0c3f78afb6070721848574e2e5dff5cfa20e28d.zip | |
Fix typos.
61 files changed, 141 insertions, 66 deletions
@@ -1,3 +1,46 @@ +2013-08-21 Ondřej Bílka <neleai@seznam.cz> + + * argp/argp-help.c: Fix typos. + * crypt/speeds.c: Likewise. + * csu/check_fds.c: Likewise. + * elf/dl-load.c: Likewise. + * elf/dl-open.c: Likewise. + * elf/reldep3.c: Likewise. + * elf/reldep.c: Likewise. + * elf/sprof.c: Likewise. + * iconv/iconv_charmap.c: Likewise. + * iconv/skeleton.c: Likewise. + * iconv/strtab.c: Likewise. + * io/lockf64.c: Likewise. + * libio/libioP.h: Likewise. + * resolv/gai_notify.c: Likewise. + * resolv/ns_name.c: Likewise. + * resolv/ns_samedomain.c: Likewise. + * resolv/res_send.c: Likewise. + * stdlib/random.c: Likewise. + * sunrpc/rpc/xdr.h: Likewise. + * sysdeps/i386/fpu/fraiseexcpt.c: Likewise. + * sysdeps/i386/i686/multiarch/memcmp-sse4.S: Likewise. + * sysdeps/i386/i686/multiarch/memset-sse2-rep.S: Likewise. + * sysdeps/i386/i686/multiarch/memset-sse2.S: Likewise. + * sysdeps/i386/i686/multiarch/strcat-sse2.S: Likewise. + * sysdeps/i386/i686/multiarch/strcmp-sse4.S: Likewise. + * sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Likewise. + * sysdeps/i386/i686/multiarch/strcpy-sse2.S: Likewise. + * sysdeps/mach/hurd/check_fds.c: Likewise. + * sysdeps/powerpc/powerpc32/cell/memcpy.S: Likewise. + * sysdeps/powerpc/powerpc32/fpu/setjmp.S: Likewise. + * sysdeps/powerpc/powerpc32/power4/memcmp.S: Likewise. + * sysdeps/powerpc/powerpc32/power7/memcmp.S: Likewise. + * sysdeps/powerpc/powerpc32/setjmp.S: Likewise. + * sysdeps/powerpc/powerpc64/cell/memcpy.S: Likewise. + * sysdeps/pthread/aio_notify.c: Likewise. + * sysdeps/sparc/fpu/fraiseexcpt.c: Likewise. + * sysdeps/unix/sysv/linux/socketcall.h: Likewise. + * sysdeps/x86_64/fpu/fraiseexcpt.c: Likewise. + * sysdeps/x86_64/multiarch/strcpy-sse2-unaligned.S: Likewise. + * sysdeps/x86/fpu/bits/fenv.h: Likewise. + 2013-08-21 Liubov Dmitrieva <liubov.dmitrieva@intel.com> * sysdeps/i386/i686/multiarch/strcmp.S: Skip SSE4_2 diff --git a/argp/argp-help.c b/argp/argp-help.c index 4b83737742..53702e3dd2 100644 --- a/argp/argp-help.c +++ b/argp/argp-help.c @@ -357,7 +357,7 @@ struct hol_entry /* A pointers into the HOL's short_options field, to the first short option letter for this entry. The order of the characters following this point corresponds to the order of options pointed to by OPT, and there are at - most NUM. A short option recorded in a option following OPT is only + most NUM. A short option recorded in an option following OPT is only valid if it occurs in the right place in SHORT_OPTIONS (otherwise it's probably been shadowed by some other entry). */ char *short_options; @@ -736,12 +736,12 @@ hol_entry_cmp (const struct hol_entry *entry1, if (entry1->cluster != entry2->cluster) { /* The entries are not within the same cluster, so we can't compare them - directly, we have to use the appropiate clustering level too. */ + directly, we have to use the appropriate clustering level too. */ if (! entry1->cluster) /* ENTRY1 is at the `base level', not in a cluster, so we have to compare it's group number with that of the base cluster in which ENTRY2 resides. Note that if they're in the same group, the - clustered option always comes laster. */ + clustered option always comes last. */ return group_cmp (group1, hol_cluster_base (entry2->cluster)->group, -1); else if (! entry2->cluster) /* Likewise, but ENTRY2's not in a cluster. */ diff --git a/crypt/speeds.c b/crypt/speeds.c index 0d55ae83be..810ecb0b29 100644 --- a/crypt/speeds.c +++ b/crypt/speeds.c @@ -16,7 +16,7 @@ * patch from chip@chinacat.unicom.com (Chip Rosenthal): * you may enable it if your system does not include * a setitimer() function. You'll have to ensure the - * existence a environment variable: HZ giving how many + * existence an environment variable: HZ giving how many * ticks goes per second. * If not existing in your default environment 50, 60 * or even 100 may be the right value. Perhaps you should diff --git a/csu/check_fds.c b/csu/check_fds.c index 3616e6c60f..9b83828a81 100644 --- a/csu/check_fds.c +++ b/csu/check_fds.c @@ -60,7 +60,7 @@ check_one_fd (int fd, int mode) /* Something is wrong with this descriptor, it's probably not opened. Open /dev/null so that the SUID program we are - about to start does not accidently use this descriptor. */ + about to start does not accidentally use this descriptor. */ int nullfd = open_not_cancel (name, mode, 0); /* We are very paranoid here. With all means we try to ensure diff --git a/elf/dl-load.c b/elf/dl-load.c index 655e38ee4b..6a73f27345 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -324,7 +324,7 @@ _dl_dst_substitute (struct link_map *l, const char *name, char *result, const char *const start = name; /* Now fill the result path. While copying over the string we keep - track of the start of the last path element. When we come accross + track of the start of the last path element. When we come across a DST we copy over the value or (if the value is not available) leave the entire path element out. */ char *wp = result; diff --git a/elf/dl-open.c b/elf/dl-open.c index 7adf66b221..24d6a70117 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -396,7 +396,7 @@ dl_open_worker (void *a) /* If this here is the shared object which we want to profile make sure the profile is started. We can find out whether this is necessary or not by observing the `_dl_profile_map' - variable. If it was NULL but is not NULL afterwars we must + variable. If it was NULL but is not NULL afterwards we must start the profiling. */ struct link_map *old_profile_map = GL(dl_profile_map); diff --git a/elf/reldep.c b/elf/reldep.c index 44b239b6c7..adabc0d5d5 100644 --- a/elf/reldep.c +++ b/elf/reldep.c @@ -54,7 +54,7 @@ main (void) } /* Now close the first object. If must still be around since we have - a implicit dependency. */ + an implicit dependency. */ if (dlclose (h1) != 0) { printf ("closing h1 failed: %s\n", dlerror ()); diff --git a/elf/reldep3.c b/elf/reldep3.c index b051c41dbc..05013d3509 100644 --- a/elf/reldep3.c +++ b/elf/reldep3.c @@ -54,7 +54,7 @@ main (void) } /* Now close the first object. If must still be around since we have - a implicit dependency. */ + an implicit dependency. */ if (dlclose (h1) != 0) { printf ("closing h1 failed: %s\n", dlerror ()); diff --git a/elf/sprof.c b/elf/sprof.c index 60f310f47a..ecb7bdb2dc 100644 --- a/elf/sprof.c +++ b/elf/sprof.c @@ -1364,7 +1364,7 @@ generate_call_graph (struct profdata *profdata) runp = runp->next; } - /* Info abount the function itself. */ + /* Info about the function itself. */ n = printf ("[%Zu]", cnt); printf ("%*s%5.1f%8.2f%8.2f%9" PRIdMAX " %s [%Zd]\n", (int) (7 - n), " ", diff --git a/iconv/iconv_charmap.c b/iconv/iconv_charmap.c index 56f156e117..09024a97cc 100644 --- a/iconv/iconv_charmap.c +++ b/iconv/iconv_charmap.c @@ -454,7 +454,7 @@ process_block (struct convtable *tbl, char *addr, size_t len, FILE *output) while (! is_term (cur, byte)) if (cur->val[byte].sub == NULL) { - /* This is a invalid sequence. Skip the first byte if we are + /* This is an invalid sequence. Skip the first byte if we are ignoring errors. Otherwise punt. */ if (! omit_invalid) { diff --git a/iconv/skeleton.c b/iconv/skeleton.c index 45beb06d34..6997e05682 100644 --- a/iconv/skeleton.c +++ b/iconv/skeleton.c @@ -514,7 +514,7 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, size_t *lirreversiblep = irreversible ? &lirreversible : NULL; /* The following assumes that encodings, which have a variable length - what might unalign a buffer even though it is a aligned in the + what might unalign a buffer even though it is an aligned in the beginning, either don't have the minimal number of bytes as a divisor of the maximum length or have a minimum length of 1. This is true for all known and supported encodings. @@ -659,7 +659,7 @@ FUNCTION_NAME (struct __gconv_step *step, struct __gconv_step_data *data, data->__outbuf = outbuf; /* Remember how many non-identical characters we - converted in a irreversible way. */ + converted in an irreversible way. */ *irreversible += lirreversible; break; diff --git a/iconv/strtab.c b/iconv/strtab.c index c6255 |
