diff options
author | Mark McLoughlin <markmc@redhat.com> | 2009-10-08 19:58:25 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-15 09:32:01 -0500 |
commit | 7f161aaea6e1f566a017f87513924d1c8bbfdc6c (patch) | |
tree | 023f251dfbf3c9ce8bb8f7bea78bf82e8b73878f /vl.c | |
parent | d80b9fc628501aefef949e6085bdecf1432d1b9b (diff) |
net: add QemuOptsList arg to net_client_parse()
Patchworks-ID: 35505
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5088,7 +5088,7 @@ int main(int argc, char **argv, char **envp) break; #endif case QEMU_OPTION_net: - if (net_client_parse(optarg) == -1) { + if (net_client_parse(&qemu_net_opts, optarg) == -1) { exit(1); } break; |