diff options
author | Toomas Soome <tsoome@me.com> | 2017-07-01 10:54:17 +0300 |
---|---|---|
committer | Richard Lowe <richlowe@richlowe.net> | 2018-02-22 15:59:31 +0000 |
commit | d7fdecd2374114124f192b3bfc84d2d294bb45ab (patch) | |
tree | b75aa1d0937afb348a671ccbe377aeabc0ba5c0b /usr/src/lib/libldap5/sources/ldap/ber/io.c | |
parent | e10a6edabdc38e5fd1d9da6a6a54774a41f91b22 (diff) | |
download | illumos-gate-d7fdecd2374114124f192b3bfc84d2d294bb45ab.tar.gz |
9154 libldap5: this statement may fall through
Reviewed by: Sebastian Wiedenroth <sebastian.wiedenroth@skylime.net>
Reviewed by: Jason King <jason.king@joyent.com>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src/lib/libldap5/sources/ldap/ber/io.c')
-rw-r--r-- | usr/src/lib/libldap5/sources/ldap/ber/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libldap5/sources/ldap/ber/io.c b/usr/src/lib/libldap5/sources/ldap/ber/io.c index 26d3b7da3a..67e8b775ce 100644 --- a/usr/src/lib/libldap5/sources/ldap/ber/io.c +++ b/usr/src/lib/libldap5/sources/ldap/ber/io.c @@ -870,7 +870,7 @@ ber_sockbuf_set_option( Sockbuf *sb, int option, void *value ) switch ( option ) { case LBER_SOCKBUF_OPT_MAX_INCOMING_SIZE: sb->sb_max_incoming = *((ber_uint_t *) value); - /* FALL */ + /* FALLTHROUGH */ case LBER_SOCKBUF_OPT_TO_FILE: case LBER_SOCKBUF_OPT_TO_FILE_ONLY: case LBER_SOCKBUF_OPT_NO_READ_AHEAD: |