summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2020-12-30 19:25:37 -0700
committerJhon Honce <jhonce@redhat.com>2020-12-30 19:27:48 -0700
commita0bfd953c2e1a939b4e6781fdcc6ea873562b77c (patch)
tree3014f39f758775b5272a11b36b4d078b0c5f2623 /pkg
parentc6c9b45985790af50a78da4c222e10672f92c629 (diff)
downloadpodman-a0bfd953c2e1a939b4e6781fdcc6ea873562b77c.tar.gz
podman-a0bfd953c2e1a939b4e6781fdcc6ea873562b77c.tar.bz2
podman-a0bfd953c2e1a939b4e6781fdcc6ea873562b77c.zip
Expose Height/Width fields to decoder
Fixes #7102 Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'pkg')
-rw-r--r--pkg/api/handlers/compat/resize.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkg/api/handlers/compat/resize.go b/pkg/api/handlers/compat/resize.go
index bdc051d73..cc8c6ef0a 100644
--- a/pkg/api/handlers/compat/resize.go
+++ b/pkg/api/handlers/compat/resize.go
@@ -20,8 +20,8 @@ func ResizeTTY(w http.ResponseWriter, r *http.Request) {
// /containers/{id}/resize
query := struct {
- height uint16 `schema:"h"`
- width uint16 `schema:"w"`
+ Height uint16 `schema:"h"`
+ Width uint16 `schema:"w"`
}{
// override any golang type defaults
}
@@ -33,8 +33,8 @@ func ResizeTTY(w http.ResponseWriter, r *http.Request) {
}
sz := remotecommand.TerminalSize{
- Width: query.width,
- Height: query.height,
+ Width: query.Width,
+ Height: query.Height,
}
var status int