packet: Fix fallthrough compiler warnings

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
This commit is contained in:
Andreas Schneider
2017-08-25 10:05:18 +02:00
parent a9846ccc0d
commit 2493e962fe
2 changed files with 9 additions and 1 deletions

View File

@@ -383,6 +383,14 @@ int ssh_connector_remove_event(ssh_connector connector);
# endif
#endif
#ifndef FALL_THROUGH
# ifdef HAVE_FALLTHROUGH_ATTRIBUTE
# define FALL_THROUGH __attribute__ ((fallthrough))
# else /* HAVE_FALLTHROUGH_ATTRIBUTE */
# define FALL_THROUGH
# endif /* HAVE_FALLTHROUGH_ATTRIBUTE */
#endif /* FALL_THROUGH */
void ssh_agent_state_free(void *data);
#endif /* _LIBSSH_PRIV_H */