diff options
Diffstat (limited to 'bootscripts')
-rw-r--r-- | bootscripts/ChangeLog | 3 | ||||
-rw-r--r-- | bootscripts/lfs/init.d/checkfs | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/bootscripts/ChangeLog b/bootscripts/ChangeLog index 28a812d2c..240f1281e 100644 --- a/bootscripts/ChangeLog +++ b/bootscripts/ChangeLog @@ -1,3 +1,6 @@ +2020-08-02 Bruce Dubbs <bdubbs@linuxfromscratch.org> + * Fix a minor display problem in checkfs + 2019-10-31 DJ Lucas <dj@linuxfromscratch.org> * Syslog should not start in runlevel 2 due to network logging * Remove errant swap dependency for checkfs diff --git a/bootscripts/lfs/init.d/checkfs b/bootscripts/lfs/init.d/checkfs index c6827b363..2ca032033 100644 --- a/bootscripts/lfs/init.d/checkfs +++ b/bootscripts/lfs/init.d/checkfs @@ -94,7 +94,7 @@ case "${1}" in if [ "${error_value}" = 1 ]; then msg="\nWARNING:\n\nFile system errors " msg="${msg}were found and have been corrected.\n" - msg="${msg} You may want to double-check that " + msg="${msg} You may want to double-check that " msg="${msg}everything was fixed properly." log_warning_msg "$msg" fi |