Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Feb 2003 06:47:20 -0800 (PST)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 24896 for review
Message-ID:  <200302091447.h19ElKSb063040@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=24896

Change 24896 by jmallett@jmallett_dalek on 2003/02/09 06:47:10

	Fix a byte swap typo that was keeping the partition data invalid.

Affected files ...

.. //depot/projects/mips/sys/geom/geom_fx.c#8 edit

Differences ...

==== //depot/projects/mips/sys/geom/geom_fx.c#8 (text+ko) ====

@@ -63,7 +63,7 @@
 g_fx_swap_volpart(struct volpart *vp)
 {
 	vp->vp_size = g_dec_be4((u_char *)&vp->vp_size);
-	vp->vp_begin = g_dec_be4((u_char *)&vp->vp_size);
+	vp->vp_begin = g_dec_be4((u_char *)&vp->vp_begin);
 	vp->vp_type = g_dec_be4((u_char *)&vp->vp_type);
 }
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302091447.h19ElKSb063040>