Debian Patches

Status for ktls-utils/0.9-2

Patch Description Author Forwarded Bugs Origin Last update
0002-tlshd-fix-max-config-file-size-comparison.patch [2/5] tlshd: fix max config file size comparison
gcc throws a warning on 32-bit x86 because of signedness mismatch:

config.c:155:52: error: comparison of integer expressions of different signedness: '__off_t' {aka 'long int'} and 'unsigned int' [-Werror=sign-compare]
155 | if (statbuf.st_size < 0 || statbuf.st_size > UINT_MAX) {
| ^

st_size is a signed value (off_t), but UINT_MAX is unsigned.

Change it to compare against INT_MAX instead. This technically cuts the
max size of the config file in half to only 2GB, but I don't think we'll
miss it.
Jeff Layton <jlayton@kernel.org> no https://github.com/oracle/ktls-utils/commit/52ac9ff05a5edb5ccda33ee186ba388553b258c4 2023-06-20
0004-tlshd-conf.man-Fix-man-page-header.patch [4/5] tlshd-conf.man: Fix man page header
Closes #16
Chuck Lever <chuck.lever@oracle.com> no https://github.com/oracle/ktls-utils/commit/877fda752e545c71bf6b2a8c21728e2adc17c0de 2023-07-22
0005-Fix-the-with-systemd-command-line-option.patch [5/5] Fix the --with-systemd command-line option
Closes #17
Chuck Lever <chuck.lever@oracle.com> no https://github.com/oracle/ktls-utils/commit/d433b40f318af1c616dd614495927bd3509b4692 2023-07-22

All known versions for source package 'ktls-utils'

Links