diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-07-16 13:20:10 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-07-16 13:20:10 +0000 |
| commit | 48719ca7c8b9bb38fd2816dc06af05479c4491e2 (patch) | |
| tree | a9fe84d9dc5769f0c5bb3081766153a32a0bbb51 | |
| parent | 74304cd7849c00ebd3eb9897ab4ce4ccb62ce8cb (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_acct.c | 4 |
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); |
