Date: Mon, 21 Apr 2003 12:58:34 -0700 (PDT) From: Buzz Slye <buzz@gaia.arc.nasa.gov> To: simokawa@sat.t.u-tokyo.ac.jp Cc: freebsd-firewire@freebsd.org Subject: Bug Report Message-ID: <Pine.GSO.4.55.0304211257370.7300@mono.arc.nasa.gov>
next in thread | raw e-mail | index | archive | help
In module fwdev.c, the following code - case FWASREQEUI: fwdev = fw_noderesolve_eui64(sc->fc, &asyreq->req.dst.eui); if (fwdev == NULL) { device_printf(sc->fc->bdev, "cannot find node\n"); err = EINVAL; goto error; } xfer->dst = fwdev->dst; fp->mode.hdr.dst = htons(FWLOCALBUS | xfer->dst); break; should read - case FWASREQEUI: fwdev = fw_noderesolve_eui64(sc->fc, &asyreq->req.dst.eui); if (fwdev == NULL) { device_printf(sc->fc->bdev, "cannot find node\n"); err = EINVAL; goto error; } xfer->dst = FWLOCALBUS | fwdev->dst; fp->mode.hdr.dst = htons(xfer->dst); break; Buzz Slye SGE/242.4 NASA - Ames Research Center Moffett Field, Ca 94035
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.55.0304211257370.7300>