aboutsummaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2023-05-20 13:37:47 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2023-06-02 01:39:48 +0000
commit7f0d9e61f40c669fca3cfd1e342fa8236c7220b7 (patch)
treee02ce0ba813f2cb4f20643988ec030292784cab6 /hurd
parent5013f6fc6c44160e8ec6bcd34ba676e85d9d6ab6 (diff)
downloadglibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.zip
glibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.tar.gz
glibc-7f0d9e61f40c669fca3cfd1e342fa8236c7220b7.tar.bz2
Fix all the remaining misspellings -- BZ 25337
Diffstat (limited to 'hurd')
-rw-r--r--hurd/fd-close.c2
-rw-r--r--hurd/hurd/signal.h2
-rw-r--r--hurd/hurdexec.c2
-rw-r--r--hurd/hurdsig.c2
-rw-r--r--hurd/lookup-retry.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/hurd/fd-close.c b/hurd/fd-close.c
index 91cf95d..90be1e6 100644
--- a/hurd/fd-close.c
+++ b/hurd/fd-close.c
@@ -33,7 +33,7 @@ _hurd_fd_close (struct hurd_fd *fd)
else
{
/* Clear the descriptor's port cells.
- This deallocates the ports if noone else is still using them. */
+ This deallocates the ports if no one else is still using them. */
_hurd_port_set (&fd->ctty, MACH_PORT_NULL);
_hurd_port_locked_set (&fd->port, MACH_PORT_NULL);
err = 0;
diff --git a/hurd/hurd/signal.h b/hurd/hurd/signal.h
index 89cf7ac..96b6fae 100644
--- a/hurd/hurd/signal.h
+++ b/hurd/hurd/signal.h
@@ -146,7 +146,7 @@ extern struct hurd_sigstate *_hurd_global_sigstate;
extern void _hurd_sigstate_set_global_rcv (struct hurd_sigstate *ss);
/* A thread can either use its own action vector and pending signal set
- or use the global ones, depending on wether it has been marked as a
+ or use the global ones, depending on whether it has been marked as a
global receiver. The accessors below take that into account. */
extern void _hurd_sigstate_lock (struct hurd_sigstate *ss);
diff --git a/hurd/hurdexec.c b/hurd/hurdexec.c
index f8f174e..e358d84 100644
--- a/hurd/hurdexec.c
+++ b/hurd/hurdexec.c
@@ -234,7 +234,7 @@ retry:
__mutex_lock (&_hurd_id.lock);
err = _hurd_check_ids ();
- /* Avoid leaking the rid_auth port reference to the new progam */
+ /* Avoid leaking the rid_auth port reference to the new program */
if (_hurd_id.rid_auth != MACH_PORT_NULL)
{
__mach_port_deallocate (__mach_task_self (), _hurd_id.rid_auth);
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index 313e95a..ce56d28 100644
--- a/hurd/hurdsig.c
+++ b/hurd/hurdsig.c
@@ -917,7 +917,7 @@ post_signal (struct hurd_sigstate *ss,
| __sigmask (SIGTSTP))))
{
/* If we would ordinarily stop for a job control signal, but we are
- orphaned so noone would ever notice and continue us again, we just
+ orphaned so no one would ever notice and continue us again, we just
quietly die, alone and in the dark. */
detail->code = signo;
signo = SIGKILL;
diff --git a/hurd/lookup-retry.c b/hurd/lookup-retry.c
index 62f94bb..9a9b271 100644
--- a/hurd/lookup-retry.c
+++ b/hurd/lookup-retry.c
@@ -144,7 +144,7 @@ __hurd_file_name_lookup_retry (error_t (*use_init_port)
refusing symlinks while accepting mount points.
Note that we actually permit something Linux doesn't:
we follow root-owned symlinks; if that is deemed
- undesireable, we can add a final check for that
+ undesirable, we can add a final check for that
one exception to our general translator-based rule. */
struct stat64 st;
err = __io_stat (*result, &st);