diff options
author | Thomas Adam <thomas@xteddy.org> | 2023-01-16 14:01:10 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2023-01-16 14:01:10 +0000 |
commit | 789cb91f311c1030f20d0b711793e0a9bdacba7a (patch) | |
tree | 62ec63a5005d23bdbc3efc0463ddffae92e4e15e /key-string.c | |
parent | 42895efac3f19bc61dcfbe094d434256f02306b8 (diff) | |
parent | eb1f8d70a7d1fe4b0fe604d5a36fcbc2babef249 (diff) | |
download | rtmux-789cb91f311c1030f20d0b711793e0a9bdacba7a.tar.gz rtmux-789cb91f311c1030f20d0b711793e0a9bdacba7a.tar.bz2 rtmux-789cb91f311c1030f20d0b711793e0a9bdacba7a.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'key-string.c')
-rw-r--r-- | key-string.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/key-string.c b/key-string.c index 086c3ac4..699d460f 100644 --- a/key-string.c +++ b/key-string.c @@ -462,6 +462,8 @@ out: strlcat(out, "B", sizeof out); if (saved & KEYC_EXTENDED) strlcat(out, "E", sizeof out); + if (saved & KEYC_SENT) + strlcat(out, "S", sizeof out); strlcat(out, "]", sizeof out); } return (out); |