diff options
author | remko <remko@FreeBSD.org> | 2008-03-25 15:16:19 +0000 |
---|---|---|
committer | remko <remko@FreeBSD.org> | 2008-03-25 15:16:19 +0000 |
commit | 24e4d4b1f486fc36358c11e50d32a94e157ea4e2 (patch) | |
tree | 1523ad5fa8f78f51353ed6436df0c15cab786ccc /etc/periodic | |
parent | e8df07e5aae1419b98df908ca680093606df32a5 (diff) | |
download | FreeBSD-src-24e4d4b1f486fc36358c11e50d32a94e157ea4e2.zip FreeBSD-src-24e4d4b1f486fc36358c11e50d32a94e157ea4e2.tar.gz |
Add a missing ;.
PR: misc/122069
Submitted by: taku@tekipaki.jp
MFC after: 3 days
Approved by: imp (mentor, implicit trivial change).
Diffstat (limited to 'etc/periodic')
-rw-r--r-- | etc/periodic/security/410.logincheck | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/periodic/security/410.logincheck b/etc/periodic/security/410.logincheck index ab4ab65..f6cf405 100644 --- a/etc/periodic/security/410.logincheck +++ b/etc/periodic/security/410.logincheck @@ -39,7 +39,7 @@ case "$daily_status_security_logincheck_enable" in [Yy][Ee][Ss]) echo "" echo 'Checking login.conf permissions:' - if [ -G /etc/login.conf -a -O /etc/login.conf ] then + if [ -G /etc/login.conf -a -O /etc/login.conf ]; then n=0 else echo "Bad ownership of /etc/login.conf" |