summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/other/1240
blob: 1e77f1fd5f456eaef09805f0241a9c7cb0e02681 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
graphic: 0.904
device: 0.874
network: 0.854
socket: 0.767
KVM: 0.760
vnc: 0.753
files: 0.738
PID: 0.734
performance: 0.720
other: 0.711
debug: 0.652
permissions: 0.607
semantic: 0.598
boot: 0.550

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.