From 2655a108e1950534f0fa1d6034ab61444fe35ee5 Mon Sep 17 00:00:00 2001 From: "Roberto G. Hashioka" Date: Thu, 30 Jan 2014 23:21:42 +0000 Subject: [PATCH] - Fixed the last cli.call's parameter from CmdSearch Docker-DCO-1.1-Signed-off-by: Roberto Hashioka (github: rogaha) --- commands.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands.go b/commands.go index 083ca39bc5..ff7691c916 100644 --- a/commands.go +++ b/commands.go @@ -1674,7 +1674,7 @@ func (cli *DockerCli) CmdSearch(args ...string) error { v := url.Values{} v.Set("term", cmd.Arg(0)) - body, _, err := readBody(cli.call("GET", "/images/search?"+v.Encode(), nil, false)) + body, _, err := readBody(cli.call("GET", "/images/search?"+v.Encode(), nil, true)) if err != nil { return err