summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToomas Soome <tsoome@me.com>2017-07-16 23:03:24 +0300
committerHans Rosenfeld <hans.rosenfeld@joyent.com>2018-04-23 18:15:39 +0200
commit29a5d00515db6837124bcba467ff498b273b21aa (patch)
tree3c6a586e6d29236421c34831392214ddd218a6c5
parent96a8ee403e7f0a4bdde5417945795f1bf0b300b2 (diff)
downloadillumos-joyent-29a5d00515db6837124bcba467ff498b273b21aa.tar.gz
9356 vscan: this statement may fall through
Reviewed by: Jason King <jason.brian.king@gmail.com> Reviewed by: Andy Fiddaman <omnios@citrus-it.co.uk> Reviewed by: C Fraire <cfraire@me.com> Approved by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
-rw-r--r--usr/src/cmd/vscan/vscand/vs_eng.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/usr/src/cmd/vscan/vscand/vs_eng.c b/usr/src/cmd/vscan/vscand/vs_eng.c
index d4888cb02a..f92ffc750d 100644
--- a/usr/src/cmd/vscan/vscand/vs_eng.c
+++ b/usr/src/cmd/vscan/vscand/vs_eng.c
@@ -24,8 +24,6 @@
* Copyright (c) 2016 by Delphix. All rights reserved.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/*
* vs_eng.c manages the vs_engines array of scan engine.
* Access to the array and other private data is protected by vs_eng_mutex.
@@ -624,7 +622,7 @@ vs_eng_release(const vs_eng_ctx_t *eng_ctx)
(void) gettimeofday(&cxn->vsc_avail_time, NULL);
break;
}
- /* LINTED E_CASE_FALL_THROUGH - close connection */
+ /* FALLTHROUGH */
case VS_ENG_CLOSE_PENDING:
(void) close(cxn->vsc_sockfd);
cxn->vsc_sockfd = -1;