1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-07-29 13:01:13 +03:00

tests: Use C99 initilizer in test_server.c

This fixes a clang build warning.

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Anderson Toshiyuki Sasaki <ansasaki@redhat.com>
This commit is contained in:
Andreas Schneider
2019-07-04 12:06:33 +02:00
parent 68533147e2
commit fed31c1ca3

View File

@ -73,7 +73,9 @@ int run_server(struct server_state_st *state)
ssh_bind sshbind = NULL;
ssh_event event = NULL;
struct sigaction sa = {0};
struct sigaction sa = {
.sa_flags = 0
};
int rc;