summaryrefslogtreecommitdiff
path: root/cmd/podman/networks/prune.go
diff options
context:
space:
mode:
authorJakub Guzik <jguzik@redhat.com>2022-01-16 00:23:17 +0100
committerJakub Guzik <jguzik@redhat.com>2022-01-16 00:47:00 +0100
commit6bca61e0f137a38543f7ce23abcd90e058d9defd (patch)
tree0c3c2deafac4e94e8bfbaa93d0e3207d24064949 /cmd/podman/networks/prune.go
parent3c9e41bb5393e0a857d8755bb50345544cc31b50 (diff)
downloadpodman-6bca61e0f137a38543f7ce23abcd90e058d9defd.tar.gz
podman-6bca61e0f137a38543f7ce23abcd90e058d9defd.tar.bz2
podman-6bca61e0f137a38543f7ce23abcd90e058d9defd.zip
Unify the method of parsing filters in cmd
This commit unifies the method of filters parsing in cmd. It removes also the function redundancy. [NO NEW TESTS NEEDED] Signed-off-by: Jakub Guzik <jguzik@redhat.com>
Diffstat (limited to 'cmd/podman/networks/prune.go')
-rw-r--r--cmd/podman/networks/prune.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/podman/networks/prune.go b/cmd/podman/networks/prune.go
index 311d098cd..e113cd359 100644
--- a/cmd/podman/networks/prune.go
+++ b/cmd/podman/networks/prune.go
@@ -7,11 +7,11 @@ import (
"strings"
"github.com/containers/podman/v3/cmd/podman/common"
+ "github.com/containers/podman/v3/cmd/podman/parse"
"github.com/containers/podman/v3/cmd/podman/registry"
"github.com/containers/podman/v3/cmd/podman/utils"
"github.com/containers/podman/v3/cmd/podman/validate"
"github.com/containers/podman/v3/pkg/domain/entities"
- "github.com/containers/podman/v3/pkg/specgenutil"
"github.com/spf13/cobra"
"github.com/spf13/pflag"
)
@@ -68,7 +68,7 @@ func networkPrune(cmd *cobra.Command, _ []string) error {
return nil
}
}
- networkPruneOptions.Filters, err = specgenutil.ParseFilters(filter)
+ networkPruneOptions.Filters, err = parse.FilterArgumentsIntoFilters(filter)
if err != nil {
return err
}