summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schubert <schubter@gmail.com>2020-02-19 13:48:10 +0100
committerAndreas Schubert <schubter@gmail.com>2020-02-19 13:48:10 +0100
commit1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb (patch)
treeb7defaf55dbdc85789d1d4593b4b3a779ebaeb7a
parent1bed53b02c2f65ba26dc320a797c6fe473fce9a1 (diff)
downloadpodman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.tar.gz
podman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.tar.bz2
podman-1e4129a19d65c8eb97d9596d1d6b04ce9ad8e6eb.zip
Fixed typo in KillContainer
Signed-off-by: Andreas Schubert <schubter@gmail.com>
-rw-r--r--pkg/api/handlers/utils/containers.go2
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"`
}{