tailcfg: fix typo in SessionDuration field name

Noted by @danderson.

Updates #3802

Change-Id: Ide15f3f28e30f6abb5c94d7dcd218bd9482752a0
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick
2022-04-21 14:13:42 -07:00
committed by Brad Fitzpatrick
parent 695f8a1d7e
commit 89832c1a95
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1730,9 +1730,9 @@ type SSHAction struct {
// without further prompts.
Accept bool `json:"accept,omitempty"`
// SesssionDuration, if non-zero, is how long the session can stay open
// SessionDuration, if non-zero, is how long the session can stay open
// before being forcefully terminated.
SesssionDuration time.Duration `json:"sessionDuration,omitempty"`
SessionDuration time.Duration `json:"sessionDuration,omitempty"`
// AllowAgentForwarding, if true, allows accepted connections to forward
// the ssh agent if requested.