]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUG/MINOR: examples/haproxy.init: missing brace in quiet_check()
authorjesse.defer@asu.edu <jesse.defer@asu.edu>
Sun, 1 Nov 2015 03:29:56 +0000 (20:29 -0700)
committerWilly Tarreau <w@1wt.eu>
Sun, 1 Nov 2015 19:22:42 +0000 (20:22 +0100)
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]

examples/haproxy.init

index d02c36710974db6e01941f8d494372f08bf0c3e3..f08fcb0dd95c757ca1b69437eb53b1fe1fa244c4 100644 (file)
@@ -94,7 +94,7 @@ check() {
   $BIN -c -q -V -f $CFG
 }
 
-quiet_check()
+quiet_check() {
   $BIN -c -q -f $CFG
 }