Make f_show_err non-fatal.

This commit is contained in:
Devin Teske 2014-03-07 20:20:27 +00:00
parent 2a2674499e
commit 67602532c3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262899

View File

@ -368,13 +368,10 @@ f_show_msg()
# f_show_err $format [$arguments ...]
#
# Display a message in a dialog box with ``Error'' i18n title (overridden by
# setting msg_error) using printf(1) syntax. If running non-interactively,
# the process will terminate (using [above] f_die()).
# setting msg_error) using printf(1) syntax.
#
f_show_err()
{
[ "$nonInteractive" ] && f_die
local msg
msg=$( printf "$@" )