diff options
author | Andreas Schubert <schubter@gmail.com> | 2020-02-19 13:48:10 +0100 |
---|---|---|
committer | Andreas Schubert <schubter@gmail.com> | 2020-02-19 13:48:10 +0100 |
commit | 1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb (patch) | |
tree | b7defaf55dbdc85789d1d4593b4b3a779ebaeb7a /pkg | |
parent | 1bed53b02c2f65ba26dc320a797c6fe473fce9a1 (diff) | |
download | podman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.tar.gz podman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.tar.bz2 podman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.zip |
Fixed typo in KillContainer
Signed-off-by: Andreas Schubert <schubter@gmail.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/api/handlers/utils/containers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/utils/containers.go b/pkg/api/handlers/utils/containers.go index 74485edf2..c9bb9cf09 100644 --- a/pkg/api/handlers/utils/containers.go +++ b/pkg/api/handlers/utils/containers.go @@ -15,7 +15,7 @@ import ( func KillContainer(w http.ResponseWriter, r *http.Request) (*libpod.Container, error) { runtime := r.Context().Value("runtime").(*libpod.Runtime) - decoder := r.Context().Value("decorder").(*schema.Decoder) + decoder := r.Context().Value("decoder").(*schema.Decoder) query := struct { Signal syscall.Signal `schema:"signal"` }{ |