diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-11-01 12:01:10 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-11-01 12:01:10 +0000 |
commit | 36896f6dd0d49d91bcc9c398c68a33818626532c (patch) | |
tree | 81d7d54d4e135093784aa1e6c857e04b35c7b141 /key-string.c | |
parent | 9dd1f442c5a7f1d8d480476f11bc62cceab2019a (diff) | |
parent | 2d08235987efa1e2f9c932c4a5c8a0200b4804c1 (diff) | |
download | rtmux-36896f6dd0d49d91bcc9c398c68a33818626532c.tar.gz rtmux-36896f6dd0d49d91bcc9c398c68a33818626532c.tar.bz2 rtmux-36896f6dd0d49d91bcc9c398c68a33818626532c.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 0ca91306..086c3ac4 100644 --- a/key-string.c +++ b/key-string.c @@ -460,6 +460,8 @@ out: strlcat(out, "I", sizeof out); if (saved & KEYC_BUILD_MODIFIERS) strlcat(out, "B", sizeof out); + if (saved & KEYC_EXTENDED) + strlcat(out, "E", sizeof out); strlcat(out, "]", sizeof out); } return (out); |