summary refs log tree commit diff stats
path: root/gitlab/issues_text/target_missing/host_missing/accel_missing/1240
blob: 24616c629c4223f83c7a09dfc9c1f5a8a2608550 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
The help document of qemu-nbd misses an option
Description of problem:
The "--help" option of qemu-nbd misses the option "tls-hostname".
Steps to reproduce:
1. For the option "tls-hostname", the following code appears during option parsing and modifies the tlshostname in qemu-nbd.c:760-762.

```
        case QEMU_NBD_OPT_TLSHOSTNAME:
            tlshostname = optarg;
            break;
```
Additional information:
But it does not appear in the document provided by "--help".

It may prevent users from using the relevant function.