]> Kevux Git Server - fll/commitdiff
Cleanup: Update comments.
authorKevin Day <thekevinday@gmail.com>
Sun, 2 Jan 2022 04:03:06 +0000 (22:03 -0600)
committerKevin Day <thekevinday@gmail.com>
Sun, 2 Jan 2022 04:03:06 +0000 (22:03 -0600)
level_0/f_account/c/account.c

index cf5b41ca6b0b5dd7ec9e334bc78a31d403eab4da..6063688cf66685a15a90c355d10fd76d8a86e420 100644 (file)
@@ -175,7 +175,7 @@ extern "C" {
 
     const size_t length_max = sysconf(_SC_GETPW_R_SIZE_MAX);
 
-    // note: pointer seems pointless except that it is used to determine if the name was found.
+    // Note: pointer seems pointless except that it is used to determine if the name was found.
     struct group grp;
     struct group *pointer;
 
@@ -186,7 +186,7 @@ extern "C" {
         length = F_account_pwd_length_fallback_first_d;
       }
 
-      // must be set to 0 to avoid problems due to the design of getgrnam()/getgrnam_r().
+      // Must be set to 0 to avoid problems due to the design of getgrnam()/getgrnam_r().
       errno = 0;
 
       char buffer[length];
@@ -252,7 +252,7 @@ extern "C" {
 
     const size_t length_max = sysconf(_SC_GETPW_R_SIZE_MAX);
 
-    // note: pointer seems pointless except that it is used to determine if the name was found.
+    // Note: pointer seems pointless except that it is used to determine if the name was found.
     struct passwd password;
     struct passwd *pointer = 0;
 
@@ -263,7 +263,7 @@ extern "C" {
         length = F_account_pwd_length_fallback_first_d;
       }
 
-      // must be set to 0 to avoid problems due to the design of getpwnam()/getpwnam_r().
+      // Must be set to 0 to avoid problems due to the design of getpwnam()/getpwnam_r().
       errno = 0;
 
       char buffer[length];