diff options
author | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-23 13:05:46 +0000 |
---|---|---|
committer | Yoann Vandoorselaere <yoann@mandriva.com> | 1999-12-23 13:05:46 +0000 |
commit | 997f80c9c5262bb3158da1b455e02c64ad902865 (patch) | |
tree | 1ec4da78d42cc0abdc284d44c49d93bf638c2f0f /cron-sh/diff_check.sh | |
parent | 01f3caf8c23e37046d486158306e2b3ede56c7aa (diff) | |
download | msec-997f80c9c5262bb3158da1b455e02c64ad902865.tar msec-997f80c9c5262bb3158da1b455e02c64ad902865.tar.gz msec-997f80c9c5262bb3158da1b455e02c64ad902865.tar.bz2 msec-997f80c9c5262bb3158da1b455e02c64ad902865.tar.xz msec-997f80c9c5262bb3158da1b455e02c64ad902865.zip |
typo
Diffstat (limited to 'cron-sh/diff_check.sh')
-rwxr-xr-x | cron-sh/diff_check.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cron-sh/diff_check.sh b/cron-sh/diff_check.sh index 751b01d..f6cff92 100755 --- a/cron-sh/diff_check.sh +++ b/cron-sh/diff_check.sh @@ -80,7 +80,7 @@ if [[ ${CHECK_WRITEABLE} == yes ]]; then printf "\nSecurity Warning: Change in World Writeable Files found :\n" >> ${TMP} grep '^+' ${WRITEABLE_DIFF} | grep -vw "^+++ " | sed 's|^.||' | while read file; do printf "\t\t- Added writables files : ${file}\n" - done >> ${TMP + done >> ${TMP} grep '^-' ${WRITEABLE_DIFF} | grep -vw "^--- " | sed 's|^.||' | while read file; do printf "\t\t- Removed writables files : ${file}\n" done >> ${TMP} |