diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-07-18 15:09:21 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-07-18 15:09:21 +0200 |
commit | 5402a761ee1299af7c1a8e710998f81e43ad582f (patch) | |
tree | 5e56907bf4e0104f24e0a547806d038eaed5c991 /src | |
parent | 11b9d74cdafa5aceb0d5e1e09bfd5cde5e5c0b04 (diff) |
Coverity CID 301780: fixed missing break (that was on purpose by the dev but obv it does not make sense)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol_ssh.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/protocol_ssh.c b/src/protocol_ssh.c index 9bbcc94..e40661a 100644 --- a/src/protocol_ssh.c +++ b/src/protocol_ssh.c @@ -419,6 +419,7 @@ static void ssh_log_cb(int priority, const char *function, switch (priority) { case 0: W("libssh: %s", buffer); + break; default: P("libssh: %s", buffer); break; |