Add a dummy field to ssh_key structure

According to C standard, the behavior is undefined if structure contains
no members.
This commit is contained in:
Pavel Kryukov 2018-06-01 19:09:52 +03:00
Родитель 108e19e73c
Коммит e6a60d53be
1 изменённых файлов: 4 добавлений и 1 удалений

5
ssh.h
Просмотреть файл

@ -75,7 +75,10 @@ void share_setup_x11_channel(void *csv, void *chanv,
typedef void *Bignum; typedef void *Bignum;
#endif #endif
typedef struct ssh_key {} ssh_key; typedef struct ssh_key {
int dummy;
} ssh_key;
typedef struct ssh_keyalg ssh_keyalg; typedef struct ssh_keyalg ssh_keyalg;
struct RSAKey { struct RSAKey {