BUG/MINOR: examples/haproxy.init: missing brace in quiet_check()

There is a missing curly brace in the quiet_check function of the example
init script.

[note: This needs to be backported to 1.6]
This commit is contained in:
jesse.defer@asu.edu 2015-10-31 20:29:56 -07:00 committed by Willy Tarreau
parent e4c4b7dda6
commit c04b16cb28
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ check() {
$BIN -c -q -V -f $CFG
}
quiet_check()
quiet_check() {
$BIN -c -q -f $CFG
}