]> err.no Git - util-linux/commitdiff
fdisk: replace bzero with memset
authorJon Ringle <jon@ringle.org>
Fri, 26 Mar 2010 02:42:52 +0000 (22:42 -0400)
committerKarel Zak <kzak@redhat.com>
Wed, 31 Mar 2010 15:23:32 +0000 (17:23 +0200)
Work on this was done in commit c0f19ccff73aa0ec5e9f3b61b932ea4a8bf4e6ed,
however a couple of bzero call sites were missed

Signed-off-by: Jon Ringle <jon@ringle.org>
fdisk/fdiskbsdlabel.c

index 2f4156161680e42be2e8e6dc23d52eb5fe150a3d..9c0925242a4c3ce55b3972607177cc43437485a1 100644 (file)
@@ -540,7 +540,7 @@ xbsd_write_bootstrap (void)
   memmove (&dl, d, sizeof (struct xbsd_disklabel));
 
   /* The disklabel will be overwritten by 0's from bootxx anyway */
-  bzero (d, sizeof (struct xbsd_disklabel));
+  memset (d, 0, sizeof (struct xbsd_disklabel));
 
   snprintf (path, sizeof(path), "%s/boot%s", bootdir, dkbasename);
   if (!xbsd_get_bootstrap (path, &disklabelbuffer[xbsd_dlabel.d_secsize],
@@ -656,7 +656,7 @@ xbsd_initlabel (struct partition *p, struct xbsd_disklabel *d, int pindex) {
        struct geom g;
 
        get_geometry (fd, &g);
-       bzero (d, sizeof (struct xbsd_disklabel));
+       memset (d, 0, sizeof (struct xbsd_disklabel));
 
        d -> d_magic = BSD_DISKMAGIC;