aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_acct.c
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2003-07-16 13:20:10 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2003-07-16 13:20:10 +0000
commit48719ca7c8b9bb38fd2816dc06af05479c4491e2 (patch)
treea9fe84d9dc5769f0c5bb3081766153a32a0bbb51 /sys/kern/kern_acct.c
parent74304cd7849c00ebd3eb9897ab4ce4ccb62ce8cb (diff)
downloadsrc-48719ca7c8b9bb38fd2816dc06af05479c4491e2.tar.gz
src-48719ca7c8b9bb38fd2816dc06af05479c4491e2.zip
Change the style of the english used to print accounting enabled
and disabled. This means no period at the end and changing "Process accounting <foo>" to "Accounting <foo>". Pointed out by: bde
Notes
Notes: svn path=/head/; revision=117673
Diffstat (limited to 'sys/kern/kern_acct.c')
-rw-r--r--sys/kern/kern_acct.c4
1 files 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);