diff options
author | mtm <mtm@FreeBSD.org> | 2004-06-24 16:57:49 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2004-06-24 16:57:49 +0000 |
commit | 6014d4752219bea227cf3e45e7fbf7a7d705378c (patch) | |
tree | 5a3ebc3a94f0008bada3c9a810b4834b818ec62c /etc | |
parent | 2a2e19c40b934a5c67dd7933456799861c419431 (diff) | |
download | FreeBSD-src-6014d4752219bea227cf3e45e7fbf7a7d705378c.zip FreeBSD-src-6014d4752219bea227cf3e45e7fbf7a7d705378c.tar.gz |
Fix typo.
Submitted by: kuriyama
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.subr b/etc/rc.subr index be5cbea..2d879e6 100644 --- a/etc/rc.subr +++ b/etc/rc.subr @@ -194,7 +194,7 @@ check_pidfile() err 3 'USAGE: check_pidfile pidfile procname [interpreter]' fi if [ ! -f $_pidfile ]; then - debug "pid file {$_pidfile): not readable." + debug "pid file ($_pidfile): not readable." return fi read _pid _junk < $_pidfile |