libssh2: delete duplicate break

```
lib/vssh/libssh2.c:2495:7: warning: 'break' will never be executed [-Wunreachable-code-break]
      break;
      ^~~~~
```

CI did not catch it due to llvm skipping this check for all #included
files. It's designed this way to avoid performance issues and false
positive when checking headers:
https://github.com/llvm/llvm-project/issues/71046

Closes #15384
This commit is contained in:
Viktor Szakats 2024-10-23 15:40:18 +02:00
parent 6b440704d8
commit 7c023c3f6e
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -2492,7 +2492,6 @@ static CURLcode ssh_statemachine(struct Curl_easy *data, bool *block)
state(data, SSH_SFTP_CLOSE);
}
break;
break;
case SSH_SFTP_READDIR_LINK:
rc =