summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordteske <dteske@FreeBSD.org>2013-11-25 20:29:26 +0000
committerdteske <dteske@FreeBSD.org>2013-11-25 20:29:26 +0000
commit94f555fd4f627d060f483a62288b633532b09fa2 (patch)
tree49340576f4bc678544daf2f38b4b0c5a0cf62a80
parent765987f58b557f7fb6327e7f245417584836d5ce (diff)
downloadFreeBSD-src-94f555fd4f627d060f483a62288b633532b09fa2.zip
FreeBSD-src-94f555fd4f627d060f483a62288b633532b09fa2.tar.gz
Add missing newline to printf format string.
-rwxr-xr-xusr.sbin/bsdconfig/includes/includes4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bsdconfig/includes/includes b/usr.sbin/bsdconfig/includes/includes
index 28802a0..d25695b 100755
--- a/usr.sbin/bsdconfig/includes/includes
+++ b/usr.sbin/bsdconfig/includes/includes
@@ -147,10 +147,10 @@ for include in "$@"; do
# See if they've just omitted the `*.subr' suffix
[ -f "$include.subr" -a ! -f "$include" ] && include="$include.subr"
if [ ! -f "$include" ]; then
- printf "$msg_no_such_file_or_directory" "$0" "$include"
+ printf "$msg_no_such_file_or_directory\n" "$0" "$include"
exit $FAILURE
elif [ ! -r "$include" ]; then
- printf "$msg_permission_denied" "$0" "$include"
+ printf "$msg_permission_denied\n" "$0" "$include"
exit $FAILURE
fi
show_include "$include" || f_die
OpenPOWER on IntegriCloud