]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
pam/pam_cgroup.c: fix spellings across the file
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Mon, 14 Aug 2023 07:55:35 +0000 (13:25 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Wed, 16 Aug 2023 15:26:18 +0000 (09:26 -0600)
Fix the spelling mistakes across the file and also fix word case.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
src/pam/pam_cgroup.c

index b268effeed175d814d45b29bcdd54ca6eeb56c97..4fd84f37d5f0e3abfe82bd710815da977940eea2 100644 (file)
@@ -110,7 +110,7 @@ PAM_EXTERN int pam_sm_open_session(pam_handle_t *pamh, int flags, int argc, cons
 
        D(("user name is %s", user_name));
 
-       /* Initialize libcg */
+       /* Initialize libcgroup */
        ret = cgroup_init();
        if (ret) {
                if (ctrl & PAM_DEBUG_ARG)
@@ -118,7 +118,7 @@ PAM_EXTERN int pam_sm_open_session(pam_handle_t *pamh, int flags, int argc, cons
                return PAM_SESSION_ERR;
        }
 
-       D(("Initialized libcgroup successfuly."));
+       D(("Initialized libcgroup successfully."));
 
        /* Determine the pid of the task */
        pid = getpid();