]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
Typographical Fixes
authorTHE-Spellchecker <The.Spellchecker@outlook.com>
Sun, 4 Jan 2026 04:11:39 +0000 (22:11 -0600)
committerDarren Tucker <dtucker@dtucker.net>
Sat, 7 Feb 2026 00:12:05 +0000 (11:12 +1100)
auth-pam.c
loginrec.c
sshd-session.c

index 7b10029435178ef8307b585cffacbeb7c01251db..fad098d6839ba25af4163e76ed98cd90f7e34d0f 100644 (file)
@@ -158,7 +158,7 @@ sshpam_sigchld_handler(int sig)
                return; /* handler called after PAM cleanup, shouldn't happen */
        if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG)
            <= 0) {
-               /* PAM thread has not exitted, privsep slave must have */
+               /* PAM thread has not exited, privsep slave must have */
                kill(cleanup_ctxt->pam_thread, SIGTERM);
                while (waitpid(cleanup_ctxt->pam_thread,
                    &sshpam_thread_status, 0) == -1) {
index 7d1c9dd43de9258da8cef357bbf0bb17e39d98f6..d57a9d14632ee0b42c39d02ea2fbf6f79b37a88b 100644 (file)
@@ -66,7 +66,7 @@
  *  code should suffice.
  *
  *  Retrieving the time of last login ('lastlog') is in some ways even
- *  more problemmatic than login recording. Some systems provide a
+ *  more problematic than login recording. Some systems provide a
  *  simple table of all users which we seek based on uid and retrieve a
  *  relatively standard structure. Others record the same information in
  *  a directory with a separate file, and others don't record the
@@ -975,7 +975,7 @@ utmp_write_entry(struct logininfo *li)
 /* not much point if we don't want utmpx entries */
 #ifdef USE_UTMPX
 
-/* if we have the wherewithall, use pututxline etc. */
+/* if we have the wherewithal, use pututxline etc. */
 # if !defined(DISABLE_PUTUTXLINE) && defined(HAVE_SETUTXENT) && \
        defined(HAVE_PUTUTXLINE)
 #  define UTMPX_USE_LIBRARY
index 5f34f6444cbaa6cd5445f0e968751ff574eea409..a3ad3a2bcb92d55b330f2f44ea1b356e96604452 100644 (file)
@@ -405,7 +405,7 @@ privsep_postauth(struct ssh *ssh, Authctxt *authctxt)
         * Hack for systems that don't support FD passing: retain privileges
         * in the post-auth privsep process so it can allocate PTYs directly.
         * This is basically equivalent to what we did <= 9.7, which was to
-        * disable post-auth privsep entriely.
+        * disable post-auth privsep entirely.
         * Cygwin doesn't need to drop privs here although it doesn't support
         * fd passing, as AFAIK PTY allocation on this platform doesn't require
         * special privileges to begin with.