Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dnl 02110-1301, USA.
dnl

AC_PREREQ([2.69])
AC_INIT([ktls-utils],[1.0.0-rc1],[[email protected]])
AC_INIT([ktls-utils],[1.0.0-rc2],[[email protected]])
AM_INIT_AUTOMAKE
AM_SILENT_RULES([yes])
AC_CONFIG_SRCDIR([config.h.in])
Expand Down
2 changes: 1 addition & 1 deletion src/tlshd/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
5 changes: 3 additions & 2 deletions src/tlshd/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down