diff options
author | Crist J. Clark <cjc@FreeBSD.org> | 2001-12-14 22:25:04 +0000 |
---|---|---|
committer | Crist J. Clark <cjc@FreeBSD.org> | 2001-12-14 22:25:04 +0000 |
commit | d15413fe2f623cd648722c8607703c39d7a9117c (patch) | |
tree | 545330deb90cf7d9656312233f04132e54d6162c /etc | |
parent | 81bda851dbd39d26e9fa840f5af682743f1009d1 (diff) | |
download | src-d15413fe2f623cd648722c8607703c39d7a9117c.tar.gz src-d15413fe2f623cd648722c8607703c39d7a9117c.zip |
Fix a stray character that found its way into a filename.
Notes
Notes:
svn path=/head/; revision=87956
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/periodic/security/200.chkmounts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/periodic/security/200.chkmounts b/etc/periodic/security/200.chkmounts index 9b19675f726e..c580c9eb69e6 100755 --- a/etc/periodic/security/200.chkmounts +++ b/etc/periodic/security/200.chkmounts @@ -63,7 +63,7 @@ case "$daily_status_security_chkmounts_enable" in echo "${host} changes in mounted filesystems:" diff -b ${LOG}/mount.today ${TMP} mv ${LOG}/mount.today ${LOG}/mount.yesterday || rc=3 - mv ${TMP} ${LOG}/mount}.today || rc=3 + mv ${TMP} ${LOG}/mount.today || rc=3 fi fi rm -f ${TMP};; |