Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 30 Nov 2016 14:02:36 +0000 (UTC)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r309326 - head/usr.bin/login
Message-ID:  <201611301402.uAUE2a80062824@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201611301402.uAUE2a80062824>