nofork: fix a bug uncovered by hush testsuite (forgotten fflush)

function                                             old     new   delta
run_nofork_applet                                    280     287      +7

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2017-08-03 19:52:47 +02:00
parent 72d725d7cc
commit 19c9f31af1
2 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,7 @@ do_test()
case $? in
0) echo " ok";;
77) echo " skip (feature disabled)";;
*) echo " fail"; tret=1;;
*) echo " fail ($?)"; tret=1;;
esac
done
exit ${tret}