From 48719ca7c8b9bb38fd2816dc06af05479c4491e2 Mon Sep 17 00:00:00 2001 From: Bosko Milekic Date: Wed, 16 Jul 2003 13:20:10 +0000 Subject: Change the style of the english used to print accounting enabled and disabled. This means no period at the end and changing "Process accounting " to "Accounting ". Pointed out by: bde --- sys/kern/kern_acct.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c index d5a08870e717..8824d573873c 100644 --- a/sys/kern/kern_acct.c +++ b/sys/kern/kern_acct.c @@ -187,7 +187,7 @@ acct(td, uap) acctp = savacctp = NULLVP; crfree(acctcred != NOCRED ? acctcred : savacctcred); acctcred = savacctcred = NOCRED; - log(LOG_NOTICE, "Process accounting disabled.\n"); + log(LOG_NOTICE, "Accounting disabled\n"); } if (uap->path == NULL) { mtx_unlock(&acct_mtx); @@ -203,7 +203,7 @@ acct(td, uap) acctflags = flags; callout_init(&acctwatch_callout, 0); mtx_unlock(&acct_mtx); - log(LOG_NOTICE, "Process accounting enabled.\n"); + log(LOG_NOTICE, "Accounting enabled\n"); acctwatch(NULL); done2: mtx_unlock(&Giant); -- cgit v1.3