Author: pstef
Date: Sat Jun 20 06:10:42 2020
New Revision: 362429
URL: https://svnweb.freebsd.org/changeset/base/362429

Log:
  libutil: remove extraneous ": " from error messages
  
  Each of the err() family of functions already takes care of that.

Modified:
  head/lib/libutil/gr_util.c
  head/lib/libutil/pw_util.c

Modified: head/lib/libutil/gr_util.c
==============================================================================
--- head/lib/libutil/gr_util.c  Sat Jun 20 04:42:24 2020        (r362428)
+++ head/lib/libutil/gr_util.c  Sat Jun 20 06:10:42 2020        (r362429)
@@ -108,11 +108,11 @@ gr_lock(void)
                        if (errno == EWOULDBLOCK) {
                                errx(1, "the group file is busy");
                        } else {
-                               err(1, "could not lock the group file: ");
+                               err(1, "could not lock the group file");
                        }
                }
                if (fstat(lockfd, &st) == -1)
-                       err(1, "fstat() failed: ");
+                       err(1, "fstat() failed");
                if (st.st_nlink != 0)
                        break;
                close(lockfd);

Modified: head/lib/libutil/pw_util.c
==============================================================================
--- head/lib/libutil/pw_util.c  Sat Jun 20 04:42:24 2020        (r362428)
+++ head/lib/libutil/pw_util.c  Sat Jun 20 06:10:42 2020        (r362429)
@@ -181,7 +181,7 @@ pw_lock(void)
                        if (errno == EWOULDBLOCK) {
                                errx(1, "the password db file is busy");
                        } else {
-                               err(1, "could not lock the passwd file: ");
+                               err(1, "could not lock the passwd file");
                        }
                }
 
@@ -191,7 +191,7 @@ pw_lock(void)
                 * close and retry.
                 */
                if (fstat(lockfd, &st) == -1)
-                       err(1, "fstat() failed: ");
+                       err(1, "fstat() failed");
                if (st.st_nlink != 0)
                        break;
                close(lockfd);
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to