diff --git a/README b/README index cfc747d..5524ce5 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -# Release Notes for ktls-utils 1.0.0-rc1 +# Release Notes for ktls-utils 1.0.0-rc2 In-kernel TLS consumers need a mechanism to perform TLS handshakes on a connected socket to negotiate TLS session parameters that can diff --git a/README.md b/README.md index cfc747d..5524ce5 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Release Notes for ktls-utils 1.0.0-rc1 +# Release Notes for ktls-utils 1.0.0-rc2 In-kernel TLS consumers need a mechanism to perform TLS handshakes on a connected socket to negotiate TLS session parameters that can diff --git a/configure.ac b/configure.ac index 64664e9..2c77fb1 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ dnl 02110-1301, USA. dnl AC_PREREQ([2.69]) -AC_INIT([ktls-utils],[1.0.0-rc1],[kernel-tls-handshake@lists.linux.dev]) +AC_INIT([ktls-utils],[1.0.0-rc2],[kernel-tls-handshake@lists.linux.dev]) AM_INIT_AUTOMAKE AM_SILENT_RULES([yes]) AC_CONFIG_SRCDIR([config.h.in]) diff --git a/src/tlshd/config.c b/src/tlshd/config.c index 8becbe0..38948e8 100644 --- a/src/tlshd/config.c +++ b/src/tlshd/config.c @@ -84,7 +84,7 @@ bool tlshd_config_init(const gchar *pathname) "nl", NULL); tmp = g_key_file_get_integer(tlshd_configuration, "debug", "delay_done", NULL); - tlshd_delay_done = tmp > 0 ? tmp : 0; + tlshd_delay_done = tmp > 0 ? (unsigned int)tmp : 0; keyrings = g_key_file_get_string_list(tlshd_configuration, "authenticate", diff --git a/src/tlshd/main.c b/src/tlshd/main.c index 088c17b..649fe3f 100644 --- a/src/tlshd/main.c +++ b/src/tlshd/main.c @@ -56,8 +56,9 @@ static const struct option longopts[] = { { NULL, 0, NULL, 0 } }; -void usage(char *progname) { - fprintf(stderr, "usage: %s [-chsv]\n", progname); +static void usage(char *progname) +{ + fprintf(stderr, "usage: %s [-chsv]\n", progname); } int main(int argc, char **argv)