From 013ecca8959f94cd97ee694676eeda6439ad38b7 Mon Sep 17 00:00:00 2001 From: Brent Baude Date: Mon, 6 Apr 2020 13:59:02 -0500 Subject: podmanv2 info add ability to run info for v2 Signed-off-by: Brent Baude --- pkg/bindings/system/info.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'pkg/bindings/system/info.go') diff --git a/pkg/bindings/system/info.go b/pkg/bindings/system/info.go index f8269cfd8..13e12645d 100644 --- a/pkg/bindings/system/info.go +++ b/pkg/bindings/system/info.go @@ -9,15 +9,15 @@ import ( ) // Info returns information about the libpod environment and its stores -func Info(ctx context.Context) (define.Info, error) { +func Info(ctx context.Context) (*define.Info, error) { info := define.Info{} conn, err := bindings.GetClient(ctx) if err != nil { - return info, err + return nil, err } response, err := conn.DoRequest(nil, http.MethodGet, "/info", nil) if err != nil { - return info, err + return nil, err } - return info, response.Process(&info) + return &info, response.Process(&info) } -- cgit v1.2.3-54-g00ecf