Merge branch 'obsd-master' into master

This commit is contained in:
Thomas Adam
2021-08-20 20:01:27 +01:00
13 changed files with 32 additions and 21 deletions

View File

@ -697,6 +697,6 @@ screen_mode_to_string(int mode)
strlcat(tmp, "CRLF,", sizeof tmp);
if (mode & MODE_KEXTENDED)
strlcat(tmp, "KEXTENDED,", sizeof tmp);
tmp[strlen (tmp) - 1] = '\0';
tmp[strlen(tmp) - 1] = '\0';
return (tmp);
}