diff options
| author | Paul Saab <ps@FreeBSD.org> | 2000-04-27 03:23:50 +0000 |
|---|---|---|
| committer | Paul Saab <ps@FreeBSD.org> | 2000-04-27 03:23:50 +0000 |
| commit | e7fd6f003e03b8956aaeac96fb12247ee7a2bc1b (patch) | |
| tree | 160d221bcfe8462921ddd3451fcab9b5acf62cfc /sys/boot | |
| parent | 98a1f447bb92b55fc06c891b9232a8e9b74818d2 (diff) | |
Notes
Diffstat (limited to 'sys/boot')
| -rw-r--r-- | sys/boot/i386/libi386/pxe.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/boot/i386/libi386/pxe.c b/sys/boot/i386/libi386/pxe.c index 101e555a8ea2..cad592869c4a 100644 --- a/sys/boot/i386/libi386/pxe.c +++ b/sys/boot/i386/libi386/pxe.c @@ -496,7 +496,9 @@ sendudp(struct iodesc *h, void *pkt, size_t len) delay(1000); #endif if (udpwrite_p->status != 0) { - printf("sendudp failed %x\n", udpwrite_p->status); + /* XXX: This happens a lot. It shouldn't. */ + if (udpwrite_p->status != 1) + printf("sendudp failed %x\n", udpwrite_p->status); return -1; } return len; |
