Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-8]: src/usr.sbin/isibootd Pull up following revision(s) (requeste...



details:   https://anonhg.NetBSD.org/src/rev/2bf985e1227a
branches:  netbsd-8
changeset: 951907:2bf985e1227a
user:      martin <martin%NetBSD.org@localhost>
date:      Sun Feb 07 13:54:01 2021 +0000

description:
Pull up following revision(s) (requested by tsutsui in ticket #1650):

        usr.sbin/isibootd/isibootd.c: revision 1.4

Fix "Cannot allocate memory" failure on amd64.
BIOCGBLEN ioctl of bpf(4) requires u_int, not size_t.

The problem is reported by Kenji Aoyama.
Should be pulled up to netbsd-9 and netbsd-8.

diffstat:

 usr.sbin/isibootd/isibootd.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 77b9cdc1c503 -r 2bf985e1227a usr.sbin/isibootd/isibootd.c
--- a/usr.sbin/isibootd/isibootd.c      Sat Feb 06 15:29:14 2021 +0000
+++ b/usr.sbin/isibootd/isibootd.c      Sun Feb 07 13:54:01 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: isibootd.c,v 1.3 2012/04/02 09:01:30 nisimura Exp $    */
+/*     $NetBSD: isibootd.c,v 1.3.26.1 2021/02/07 13:54:01 martin Exp $ */
 /*     Id: isiboot.c,v 1.2 1999/12/26 14:33:33 nisimura Exp    */
 
 /*-
@@ -364,7 +364,7 @@
        struct ifreq ifr;
        int fd;
        u_int type;
-       size_t buflen;
+       u_int buflen;
        uint8_t dladdr[ETHER_ADDR_LEN], *buf;
 #ifdef BIOCIMMEDIATE
        u_int flag;



Home | Main Index | Thread Index | Old Index