sim-card
/
qemu
Archived
10
0
Fork 0

slirp: Fix typo in net_slirp_hostfwd_remove

Report an error when err is nonzero, not when it is zero.

Signed-off-by: Geoffrey Thomas <geofft@ldpreload.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
Geoffrey Thomas 2011-12-17 04:23:59 -05:00 committed by Stefan Hajnoczi
parent 7b011fbc05
commit b15ba6c951
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ void net_slirp_hostfwd_remove(Monitor *mon, const QDict *qdict)
host_addr, host_port);
monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
err ? "removed" : "not found");
err ? "not found" : "removed");
return;
fail_syntax: