summaryrefslogtreecommitdiffstats
path: root/util/qemu-option.c
diff options
context:
space:
mode:
authorMarkus Armbruster <armbru@redhat.com>2013-06-14 13:15:02 +0200
committerAnthony Liguori <aliguori@us.ibm.com>2013-06-19 14:10:42 -0500
commita86b35f992f107323e432c0a96107e11e1b699ad (patch)
treebdcfefbf2deb9075f9d5b544ab8dac5be48a475d /util/qemu-option.c
parent6ef4716cecdfa1b3794c1a33edba9840e1aa6b5f (diff)
downloadhqemu-a86b35f992f107323e432c0a96107e11e1b699ad.zip
hqemu-a86b35f992f107323e432c0a96107e11e1b699ad.tar.gz
qemu-option: check_params() is now unused, drop it
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Anthony Liguori <aliguori@us.ibm.com> Message-id: 1371208516-7857-3-git-send-email-armbru@redhat.com Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'util/qemu-option.c')
-rw-r--r--util/qemu-option.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/util/qemu-option.c b/util/qemu-option.c
index 8b74bf1..412c425 100644
--- a/util/qemu-option.c
+++ b/util/qemu-option.c
@@ -123,36 +123,6 @@ int get_param_value(char *buf, int buf_size,
return get_next_param_value(buf, buf_size, tag, &str);
}
-int check_params(char *buf, int buf_size,
- const char * const *params, const char *str)
-{
- const char *p;
- int i;
-
- p = str;
- while (*p != '\0') {
- p = get_opt_name(buf, buf_size, p, '=');
- if (*p != '=') {
- return -1;
- }
- p++;
- for (i = 0; params[i] != NULL; i++) {
- if (!strcmp(params[i], buf)) {
- break;
- }
- }
- if (params[i] == NULL) {
- return -1;
- }
- p = get_opt_value(NULL, 0, p);
- if (*p != ',') {
- break;
- }
- p++;
- }
- return 0;
-}
-
/*
* Searches an option list for an option with the given name
*/
OpenPOWER on IntegriCloud