diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2019-05-17 11:40:23 +0100 |
|---|---|---|
| committer | Peter Maydell <peter.maydell@linaro.org> | 2019-05-17 11:40:23 +0100 |
| commit | e48a748fc899bbd9bfa63f08ebb83f1c31b7bb7d (patch) | |
| tree | 3c3161c8572933d260b4a087b227e248a00caf6a /net/slirp.c | |
| parent | b0f9690e78827d55a508c73432c73f057f59fd41 (diff) | |
| parent | 78e4f446d2569210a8558946b2321f9ff2ef47f6 (diff) | |
| download | focaccia-qemu-e48a748fc899bbd9bfa63f08ebb83f1c31b7bb7d.tar.gz focaccia-qemu-e48a748fc899bbd9bfa63f08ebb83f1c31b7bb7d.zip | |
Merge remote-tracking branch 'remotes/jasowang/tags/net-pull-request' into staging
# gpg: Signature made Fri 17 May 2019 10:01:18 BST # gpg: using RSA key EF04965B398D6211 # gpg: Good signature from "Jason Wang (Jason Wang on RedHat) <jasowang@redhat.com>" [marginal] # gpg: WARNING: This key is not certified with sufficiently trusted signatures! # gpg: It is not certain that the signature belongs to the owner. # Primary key fingerprint: 215D 46F4 8246 689E C77F 3562 EF04 965B 398D 6211 * remotes/jasowang/tags/net-pull-request: net/colo-compare.c: Fix a crash in COLO Primary. net/slirp: fix the IPv6 prefix length error message e1000: Never increment the RX undersize count register vhost_net: don't set backend for the uninitialized virtqueue Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'net/slirp.c')
| -rw-r--r-- | net/slirp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/slirp.c b/net/slirp.c index 95934fb36d..b34cb29276 100644 --- a/net/slirp.c +++ b/net/slirp.c @@ -498,7 +498,8 @@ static int net_slirp_init(NetClientState *peer, const char *model, } if (vprefix6_len < 0 || vprefix6_len > 126) { error_setg(errp, - "Invalid prefix provided (prefix len must be in range 0-126"); + "Invalid IPv6 prefix provided " + "(IPv6 prefix length must be between 0 and 126)"); return -1; } |