diff options
author | Linus Groh <mail@linusgroh.de> | 2020-10-02 22:14:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-03 12:36:49 +0200 |
commit | bcfc6f0c57f9d4ce4343cbb6ee0f0ab8de56c789 (patch) | |
tree | d3e16e6361f4693ae5362c10da05bc6a4ad30190 /Userland/Tests | |
parent | 4e86c34ef0d1d227309f8e8d22be5ea737830c24 (diff) | |
download | serenity-bcfc6f0c57f9d4ce4343cbb6ee0f0ab8de56c789.zip |
Everywhere: Fix more typos
Diffstat (limited to 'Userland/Tests')
-rw-r--r-- | Userland/Tests/Kernel/setpgid-across-sessions-without-leader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Tests/Kernel/setpgid-across-sessions-without-leader.cpp b/Userland/Tests/Kernel/setpgid-across-sessions-without-leader.cpp index 7aa46b19d2..695acec1b7 100644 --- a/Userland/Tests/Kernel/setpgid-across-sessions-without-leader.cpp +++ b/Userland/Tests/Kernel/setpgid-across-sessions-without-leader.cpp @@ -62,7 +62,7 @@ * - Time 6: PB1 forks into PB2 * - Time 7: PB1 dies (PGB now has no leader) * - Time 8: PB2 calls pgrp(0, PGA) - * Note: PB2 writes "1" (exploit successfull) or "0" (bug is fixed) to a pipe + * Note: PB2 writes "1" (exploit successful) or "0" (bug is fixed) to a pipe * - Time 9: If PX hasn't received any message yet through the pipe, it declares the test as failed (for lack of knowledge). Otherwise, it outputs accordingly. */ @@ -246,7 +246,7 @@ static void run_pb2(void* pipe_fd_ptr) sleep_steps(2); // Time 8: PB2 calls pgrp(0, PGA) - // Note: PB2 writes "1" (exploit successfull) or "0" (bug is fixed) to a pipe + // Note: PB2 writes "1" (exploit successful) or "0" (bug is fixed) to a pipe dbg() << "PB2 starts with SID=" << getsid(0) << ", PGID=" << getpgid(0) << ", PID=" << getpid() << "."; dbg() << "PB2 calls pgrp(0, PGA)"; int pga = getpid() - 3; |