aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2022-11-10 13:52:24 +0100
committerJason Wang <jasowang@redhat.com>2023-02-17 13:31:33 +0800
commit3b0cca8e4e674bda3457435208c3268767b6b085 (patch)
tree5190d1049ce2006aa1f9f8c7a69fdaeeb0fb3c57 /net
parent27c819244b8129a4742bfe43d255cdaa8528765d (diff)
downloadqemu-3b0cca8e4e674bda3457435208c3268767b6b085.zip
qemu-3b0cca8e4e674bda3457435208c3268767b6b085.tar.gz
qemu-3b0cca8e4e674bda3457435208c3268767b6b085.tar.bz2
net: Replace "Supported NIC models" with "Available NIC models"
Just because a NIC model is compiled into the QEMU binary does not necessary mean that it can be used with each and every machine. So let's rather talk about "available" models instead of "supported" models, just to avoid confusion. Reviewed-by: Claudio Fontana <cfontana@suse.de> Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/net.c b/net/net.c
index e8cd95c..ebc7ce0 100644
--- a/net/net.c
+++ b/net/net.c
@@ -941,7 +941,7 @@ int qemu_show_nic_models(const char *arg, const char *const *models)
return 0;
}
- printf("Supported NIC models:\n");
+ printf("Available NIC models:\n");
for (i = 0 ; models[i]; i++) {
printf("%s\n", models[i]);
}