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:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user