svn commit: r309326 - head/usr.bin/login

Robert Watson rwatson at FreeBSD.org
Wed Nov 30 14:02:37 UTC 2016


Author: rwatson
Date: Wed Nov 30 14:02:36 2016
New Revision: 309326
URL: https://svnweb.freebsd.org/changeset/base/309326

Log:
  Clarify warning message when failing to configure audit on user login:
  when au_user_mask() fails, it's not a failure to set the audit mask,
  but to calculate the audit mask -- and hence a condfiguration-file
  issue (of some sort).
  
  MFC after:	3 days
  Sponsored by:	DARPA, AFRL

Modified:
  head/usr.bin/login/login_audit.c

Modified: head/usr.bin/login/login_audit.c
==============================================================================
--- head/usr.bin/login/login_audit.c	Wed Nov 30 12:06:03 2016	(r309325)
+++ head/usr.bin/login/login_audit.c	Wed Nov 30 14:02:36 2016	(r309326)
@@ -80,7 +80,7 @@ au_login_success(void)
 
 	/* Compute and set the user's preselection mask. */
 	if (au_user_mask(pwd->pw_name, &aumask) == -1)
-		errx(1, "could not set audit mask");
+		errx(1, "could not calculate audit mask");
 
 	/* Set the audit info for the user. */
 	auinfo.ai_auid = uid;


More information about the svn-src-head mailing list